diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-05-10 13:48:10 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-05-10 13:48:10 +0000 |
commit | e018f8be847d79ec3f2a470a400d481ec2d7bbd6 (patch) | |
tree | 7c969788feea58f88b8116c7e454c1272a65dbf2 /t/TEST | |
parent | 436c6dd385a3b29cadf4fa091af1c55eed665e29 (diff) | |
download | perl-e018f8be847d79ec3f2a470a400d481ec2d7bbd6.tar.gz |
Don't do JAPHs unless doing "make torturetest".
Document the less obvious make test targets.
p4raw-id: //depot/perl@16534
Diffstat (limited to 't/TEST')
-rwxr-xr-x | t/TEST | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -19,6 +19,7 @@ if ($#ARGV >= 0) { push( @argv, $ARGV[$idx] ), next unless $ARGV[$idx] =~ /^-(\S+)$/; $core = 1 if $1 eq 'core'; $verbose = 1 if $1 eq 'v'; + $torture = 1 if $1 eq 'torture'; $with_utf= 1 if $1 eq 'utf8'; $byte_compile = 1 if $1 eq 'bytecompile'; $compile = 1 if $1 eq 'compile'; @@ -110,9 +111,11 @@ unless (@ARGV) { } else { warn "$0: cannot open $mani: $!\n"; } - _find_tests('pod') unless $core; - _find_tests('x2p') unless $core; - _find_tests('japh') unless $core; + unless ($core) { + _find_tests('pod'); + _find_tests('x2p'); + _find_tests('japh') if $torture; + } } # Tests known to cause infinite loops for the perlcc tests. |