diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-25 14:27:01 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-25 14:27:01 +0000 |
commit | 69026470e9d2e2c7bf7b03f351d6e98a6d6f29f3 (patch) | |
tree | c194809a1212142d6e379732826ee7e74db2bded /t/run | |
parent | 81ba8d9690fde862b2e9f40e3edd1700854de746 (diff) | |
download | perl-69026470e9d2e2c7bf7b03f351d6e98a6d6f29f3.tar.gz |
Replace the use Test::More in t/{op,io,run} with t/test.pl.
Note: io/binmode is failing, have to figure out why.
p4raw-id: //depot/perl@12198
Diffstat (limited to 't/run')
-rw-r--r-- | t/run/exit.t | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/t/run/exit.t b/t/run/exit.t index 2b8ba89d01..5305bd2ae2 100644 --- a/t/run/exit.t +++ b/t/run/exit.t @@ -5,7 +5,7 @@ BEGIN { chdir 't' if -d 't'; - @INC = '../lib'; + @INC = qw(. ../lib); } # VMS and Windows need -e "...", most everything else works better with ' @@ -22,7 +22,8 @@ BEGIN { $numtests = ($^O eq 'VMS') ? 7 : 3; } -use Test::More tests => $numtests; +require "test.pl"; +plan(tests => $numtests); my $exit, $exit_arg; |