Rename configure.in to configure.ac
[monitoring-plugins.git] / test.pl.in
blob01a97ec0807f1b74c1d7b98440b862a5b6ac23a1
1 #!/usr/bin/perl -w -I .. -I ../..
3 # Wrapper for running the test harnesses
6 use strict;
8 use Getopt::Long;
10 use NPTest qw(DetermineTestHarnessDirectory TestsFrom);
12 my @tstdir;
14 if ( ! GetOptions( "testdir:s" => \@tstdir ) )
16 print "Usage: ${0} [--testdir=<directory>] [<test_harness.t> ...]\n";
17 exit 1;
20 my @tests;
22 if ( scalar( @ARGV ) )
24 @tests = @ARGV;
26 else
28 my @directory = DetermineTestHarnessDirectory( @tstdir );
30 if ( @directory == 0 )
32 print STDERR "$0: Unable to determine the test harness directory - ABORTING\n";
33 exit 2;
36 for my $d ( @directory )
38 push (@tests, TestsFrom( $d, 1 ));
42 if ( ! scalar( @tests ) )
44 print STDERR "$0: Unable to determine the test harnesses to run - ABORTING\n";
45 exit 3;
48 use Test::Harness;
50 runtests( @tests );