From b4acbdbfa1b29c23df2ea6bcc093a118843d3381 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Wed, 19 Aug 2009 17:51:40 +0100 Subject: [PATCH] tests: namemax on ISO devices is 255 Was 256 for the old squashfs device. --- src/generator.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generator.ml b/src/generator.ml index de7a75f..a371ffd 100755 --- a/src/generator.ml +++ b/src/generator.ml @@ -1669,7 +1669,7 @@ This is the same as the C system call."); ("statvfs", (RStruct ("statbuf", "statvfs"), [Pathname "path"]), 54, [], [InitISOFS, Always, TestOutputStruct ( - [["statvfs"; "/"]], [CompareWithInt ("namemax", 256)])], + [["statvfs"; "/"]], [CompareWithInt ("namemax", 255)])], "get file system statistics", "\ Returns file system statistics for any mounted file system. -- 1.8.3.1