1 #!/usr/bin/perl -w -I .. -I ../..
3 # Wrapper for running the test harnesses
10 use NPTest
qw(DetermineTestHarnessDirectory TestsFrom);
14 if ( ! GetOptions
( "testdir:s" => \
$tstdir ) )
16 print "Usage: ${0} [--testdir=<directory>] [<test_harness.t> ...]\n";
22 if ( scalar( @ARGV ) )
28 my $directory = DetermineTestHarnessDirectory
( $tstdir );
30 if ( !defined( $directory ) )
32 print STDERR
"$0: Unable to determine the test harness directory - ABORTING\n";
36 @tests = TestsFrom
( $directory, 1 );
39 if ( ! scalar( @tests ) )
41 print STDERR
"$0: Unable to determine the test harnesses to run - ABORTING\n";
47 #$Test::Harness::verbose=1;