aboutsummaryrefslogtreecommitdiffstats
path: root/perl/test.pl
blob: e8152fd7d2cdc9438860c21849e2313fdb936eea (plain) (blame)
1
2
3
4
5
6
7
8
#!/usr/bin/perl
BEGIN { $ENV{HARNESS_IGNORE_EXITCODE} = 1; }

use Test::Harness qw(&runtests $verbose);
$verbose=0;
die "cannot find test directory!" unless -d "test";
my (@files) = <test/*.t>;
runtests("test/s/mount.t",sort(@files),"test/s/umount.t");