diff options
-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. |