/[fuse.before_github]/perl/trunk/test/statfs.t
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /perl/trunk/test/statfs.t

Parent Directory Parent Directory | Revision Log Revision Log


Revision 98 - (hide annotations)
Tue Jan 3 16:45:51 2006 UTC (18 years, 3 months ago) by dpavlin
File MIME type: application/x-troff
File size: 662 byte(s)
subversion revision 71 commited to CVS

1 mszeredi 4 #!/usr/bin/perl
2     use test::helper qw($_real $_point);
3     use Test::More;
4     require 'syscall.ph'; # for SYS_statfs
5     plan tests => 7;
6 dpavlin 46 my ($statfs_data) = 0x00 x 8 x 16;
7 mszeredi 4 my ($tmp) = $_point;
8     ok(!syscall(&SYS_statfs,$tmp,$statfs_data),"statfs");
9     # FIXME: this is soooooo linux-centric. perhaps parse the output of /bin/df?
10 dpavlin 11 my @list = unpack("L!7L2L!7",$statfs_data);
11 dpavlin 46 diag "statfs: ",join(', ', @list);
12 mszeredi 4 shift(@list);
13     is(shift(@list),4096,"block size");
14     is(shift(@list),1000000,"blocks");
15     is(shift(@list),500000,"blocks free");
16     shift(@list);
17     is(shift(@list),1000000,"files");
18     is(shift(@list),500000,"files free");
19     shift(@list);
20     shift(@list);
21     is(shift(@list),255,"namelen");

  ViewVC Help
Powered by ViewVC 1.1.26