File: test.pl

package info (click to toggle)
libfuse-perl 0.16.1%2B20180422git6becd92d7fce3fc411d7c-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 608 kB
  • sloc: perl: 1,938; makefile: 8
file content (8 lines) | stat: -rw-r--r-- 253 bytes parent folder | download | duplicates (7)
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");