xref: /openbsd-src/gnu/usr.bin/perl/t/harness (revision 4a4f25f904a8c1d8cfb83cff2b4a31ccf4fbd165)
1#!./perl
2
3# We suppose that perl _mostly_ works at this moment, so may use
4# sophisticated testing.
5
6# Note that _before install_ you may need to run it with -I ../lib flag
7
8use lib '../lib';
9use Test::Harness;
10
11$Test::Harness::switches = "";	# Too much noise otherwise
12
13@tests = @ARGV;
14@tests = <*/*.t> unless @tests;
15Test::Harness::runtests @tests;
16