--- perl/trunk/test/statfs.t 2006/01/02 22:52:10 45 +++ perl/trunk/test/statfs.t 2006/01/02 22:52:14 46 @@ -3,12 +3,12 @@ use Test::More; require 'syscall.ph'; # for SYS_statfs plan tests => 7; -my ($statfs_data) = " " x 16; +my ($statfs_data) = 0x00 x 8 x 16; my ($tmp) = $_point; ok(!syscall(&SYS_statfs,$tmp,$statfs_data),"statfs"); # FIXME: this is soooooo linux-centric. perhaps parse the output of /bin/df? my @list = unpack("L!7L2L!7",$statfs_data); -print join(', ', @list)."\n"; +diag "statfs: ",join(', ', @list); shift(@list); is(shift(@list),4096,"block size"); is(shift(@list),1000000,"blocks");