/[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 4 - (hide annotations)
Thu Nov 11 14:44:15 2004 UTC (19 years, 5 months ago) by mszeredi
File MIME type: application/x-troff
File size: 636 byte(s)
Initial revision

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     my ($statfs_data) = " " x 10;
7     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     my @list = unpack("LSSL8",$statfs_data);
11     shift(@list);
12     is(shift(@list),4096,"block size");
13     shift(@list);
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