5 # App::Prove is a Perl core module so it's unlikely to be missing, but if it
6 # isn't found we exit with status 77 which causes the testharness to treat the
8 eval { require App
::Prove
};
11 my $app = App
::Prove
->new;
12 unshift @ARGV, "-I$ENV{srcdir}" if exists $ENV{srcdir
};
14 $app->process_args(@ARGV);
15 exit($app->run ?
0 : 1);