st_blocks is in 512 byte blocks.
Jarkko Hietaniemi [Thu, 12 Aug 1999 19:42:53 +0000 (19:42 +0000)]
p4raw-id: //depot/cfgperl@3973

t/lib/syslfs.t
t/op/lfs.t

index 206a2ef..2955397 100644 (file)
@@ -51,11 +51,12 @@ my @s;
 
 print "# @s\n";
 
+my $BLOCKSIZE = 512; # is this really correct everywhere?
+
 unless (@s == 13 &&
        $s[7] == 1_000_003 &&
-       defined $s[11] &&
        defined $s[12] &&
-       $s[11] * $s[12] < 1000_003) {
+       $BLOCKSIZE * $s[12] < 1_000_003) {
     print "1..0\n# no sparse files?\n";
     bye();
 }
index 9d9b8ae..bfcc33a 100644 (file)
@@ -54,11 +54,12 @@ my @s;
 
 print "# @s\n";
 
+my $BLOCKSIZE = 512; # is this really correct everywhere?
+
 unless (@s == 13 &&
        $s[7] == 1_000_003 &&
-       defined $s[11] &&
        defined $s[12] &&
-       $s[11] * $s[12] < 1000_003) {
+        $BLOCKSIZE * $s[12] < 1_000_003) {
     print "1..0\n# no sparse files?\n";
     bye();
 }