diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-07-04 21:42:12 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-07-04 21:42:12 +0000 |
commit | 69bfbd2f6d23003efc693716e3e2827f496fcc2d (patch) | |
tree | a39486fd2ebeab2e2ad742f5fb3a49b50cfa453c /Makefile.SH | |
parent | 990fb837ac6356023668c709e35770d2e63ec006 (diff) | |
download | perl-69bfbd2f6d23003efc693716e3e2827f496fcc2d.tar.gz |
Add a new test target in the makefile, test_harness_notty.
It's like test_harness, but sets HARNESS_NOTTY=1 to make
Test::Harness' output less blinking.
p4raw-id: //depot/perl@20001
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.SH b/Makefile.SH index ace595c1a7..cf2f38e5dc 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -1034,7 +1034,7 @@ makedepend: makedepend.SH config.sh test_tty test-tty _test_tty test_notty test-notty _test_notty \ 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.deparse test_notty.deparse test_harness test_harness_notty \ minitest coretest # Cannot delegate rebuilding of t/perl to make @@ -1133,6 +1133,9 @@ minitest: miniperl$(EXE_EXT) lib/re.pm test_harness: test_prep PERL=./perl $(MAKE) TESTFILE=harness _test +test_harness_notty: test_prep + PERL=./perl HARNESS_NOTTY=1 $(MAKE) TESTFILE=harness _test + # Handy way to run perlbug -ok without having to install and run the # installed perlbug. We don't re-run the tests here - we trust the user. # Please *don't* use this unless all tests pass. |