--- perl/trunk/test/s/umount.t 2004/11/11 14:44:15 4 +++ perl/trunk/test/s/umount.t 2005/03/20 00:36:05 10 @@ -2,6 +2,8 @@ use test::helper qw($_point $_real $_pidfile); use strict; use Test::More tests => 1; -system("umount $_point"); -ok(1,"unmount"); +use POSIX qw(WEXITSTATUS); +#system("umount $_point"); +system("fusermount -u $_point"); +ok(POSIX::WEXITSTATUS($?) == 0,"unmount"); system("rm -rf $_real $_pidfile");