diff options
-rw-r--r-- | t/lib/syslfs.t | 6 | ||||
-rw-r--r-- | t/op/lfs.t | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/t/lib/syslfs.t b/t/lib/syslfs.t index a8a7a0cde2..43e66feb59 100644 --- a/t/lib/syslfs.t +++ b/t/lib/syslfs.t @@ -116,6 +116,12 @@ unless($syswrite && $close) { print "# @s\n"; +unless ($s[7] == 5_000_000_003) { + print "1..0\n# not configured to use large files?\n"; + explain(); + bye(); +} + sub fail () { print "not "; $fail++; diff --git a/t/op/lfs.t b/t/op/lfs.t index 6f252312ab..87060e74c6 100644 --- a/t/op/lfs.t +++ b/t/op/lfs.t @@ -120,6 +120,12 @@ unless ($print && $close) { print "# @s\n"; +unless ($s[7] == 5_000_000_003) { + print "1..0\n# not configured to use large files?\n"; + explain(); + bye(); +} + sub fail () { print "not "; $fail++; |