diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-10-22 06:39:29 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-10-22 06:39:29 +0000 |
commit | b26492eee9e9f6169aa5698b42a13506468cb846 (patch) | |
tree | 1e36a73c5a1d8692997755f79216da33be20f324 /Makefile.SH | |
parent | bf9cdc68d248e456c55258025f0d0724ca63226d (diff) | |
download | perl-b26492eee9e9f6169aa5698b42a13506468cb846.tar.gz |
Add a test.taintwarn makefile target,
to run the whole test suite with the -t switch.
p4raw-id: //depot/perl@21515
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.SH b/Makefile.SH index 2245f6e80d..713b2a3839 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -1055,7 +1055,7 @@ makedepend: makedepend.SH config.sh utest ucheck test.utf8 check.utf8 test.torture torturetest \ test.third check.third utest.third ucheck.third test_notty.third \ test.deparse test_notty.deparse test_harness test_harness_notty \ - test.bytecompile minitest coretest + test.bytecompile minitest coretest test.taintwarn # Cannot delegate rebuilding of t/perl to make # to allow interlaced test and minitest @@ -1155,6 +1155,11 @@ test.deparse: test_prep test_notty.deparse: test_prep PERL=./perl TEST_ARGS=-deparse $(MAKE) _test_notty +# Targets to run the test suite with -t + +test.taintwarn: test_prep + PERL=./perl TEST_ARGS=-taintwarn $(MAKE) _test + # Can't depend on lib/Config.pm because that might be where miniperl # is crashing. minitest: miniperl$(EXE_EXT) lib/re.pm |