diff options
author | Nicholas Clark <nick@ccl4.org> | 2004-03-02 22:02:36 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2004-03-02 22:02:36 +0000 |
commit | 43651d81392f71a2868d35b75782d354b0139c90 (patch) | |
tree | 7867f13e33750fe244b05a78c9455989b9214006 /Makefile.SH | |
parent | 9acd3e2cb8772b6eb8d3f739a8401e73420609ba (diff) | |
download | perl-43651d81392f71a2868d35b75782d354b0139c90.tar.gz |
Work on eliminating systematic failures on make minitest:
make minitest passes a -minitest flag to t/TEST
t/TEST sees this and sets $ENV{PERL_CORE_MINITEST}
Tests can choose to skip based on this.
(Other tactic is to make loading of Errno by %! happen at run time.)
p4raw-id: //depot/perl@22423
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.SH b/Makefile.SH index bc5a497419..811512d08e 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -1159,7 +1159,7 @@ minitest: miniperl$(EXE_EXT) lib/re.pm @echo "to build lib/Config.pm or lib/lib.pm." @echo " " - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \ - && $(LDLIBPTH) ./perl TEST base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t </dev/tty + && $(LDLIBPTH) ./perl TEST -minitest base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t </dev/tty # Test via harness |