/[fuse.before_github]/perl-llin/test/s/mount.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

Contents of /perl-llin/test/s/mount.t

Parent Directory Parent Directory | Revision Log Revision Log


Revision 22 - (show annotations)
Mon Jan 2 20:29:57 2006 UTC (18 years, 2 months ago) by dpavlin
File MIME type: application/x-troff
File size: 682 byte(s)
diag output
1 #!/usr/bin/perl -w
2 use test::helper qw($_point $_loop $_real $_pidfile);
3 use strict;
4 use Test::More tests => 3;
5 ok(!(scalar grep(/ on $_point /,`cat /proc/mounts`)),"already mounted");
6 ok(-f $_loop,"loopback exists");
7
8 if(!fork()) {
9 #close(STDIN);
10 close(STDOUT);
11 close(STDERR);
12 mkdir $_point;
13 mkdir $_real;
14 `echo $$ >test/s/mounted.pid`;
15 diag "mouting $_loop to $_point";
16 exec("perl -Iblib/lib -Iblib/arch $_loop $_point");
17 exit(1);
18 }
19 select(undef, undef, undef, 0.5);
20 my ($success) = `cat /proc/mounts` =~ / $_point /;
21 ok($success,"mount succeeded");
22 system("rm -rf $_real");
23 unless($success) {
24 kill('INT',`cat $_pidfile`);
25 unlink($_pidfile);
26 } else {
27 mkdir($_real);
28 }

  ViewVC Help
Powered by ViewVC 1.1.26