diff options
author | Abigail <abigail@abigail.be> | 2000-08-24 00:00:53 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-24 13:35:50 +0000 |
commit | 9a1a5091a6c36449d157d6d67bb67551c7800de3 (patch) | |
tree | fbf75f639336cf59cceb8eeaf4c5a0375d67147b /Makefile.SH | |
parent | cdf0af66ed02028a5c0b55d38b6fda6c0c3683ee (diff) | |
download | perl-9a1a5091a6c36449d157d6d67bb67551c7800de3.tar.gz |
installperl couldn't tell whether it had run tests or not.
Subject: [PATCH] Re: installperl and t/TEST
Message-ID: <20000824080053.2494.qmail@foad.org>
p4raw-id: //depot/perl@6794
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.SH b/Makefile.SH index fb3a4fc7a6..71a077e924 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -720,7 +720,7 @@ _cleaner1: done _cleaner2: - rm -f core core.*perl.*.? *perl.core t/core t/core.perl.*.? t/*perl.core t/misctmp* t/forktmp* t/tmp* t/c t/perl .?*.c so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR) + rm -f core core.*perl.*.? *perl.core t/core t/core.perl.*.? t/*perl.core t/misctmp* t/forktmp* t/tmp* t/c t/perl t/ran_tests .?*.c so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR) rm -rf $(addedbyconf) rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old rm -f $(private) @@ -783,6 +783,7 @@ test check: test-prep else \ cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST; \ fi + @echo "Ran tests" > t/ran_tests utest ucheck: test-prep if (true </dev/tty) >/dev/null 2>&1; then \ |