diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-02-21 13:31:57 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-02-21 13:31:57 +0000 |
commit | 115e9681b8231e4672c4d1f4ad598dba6f23a54c (patch) | |
tree | 1cd2a4ceede804e698b83dc469c19a76584c002a /Makefile.SH | |
parent | 44bcdf2982dc8e16a1775b26b660a1716a7bf3be (diff) | |
download | perl-115e9681b8231e4672c4d1f4ad598dba6f23a54c.tar.gz |
In t/TEST, automatically detect if running under miniperl
Set $ENV{PERL_CORE_MINITEST} based on defined &DynaLoader::boot_DynaLoader,
instead of relying on a -minitest parameter. &DynaLoader::boot_DynaLoader is
undefined in miniperl, defined in perl, for both -Dusedl and -Uusedl
Diffstat (limited to 'Makefile.SH')
-rwxr-xr-x | Makefile.SH | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.SH b/Makefile.SH index 35c83cbed4..ce142440f9 100755 --- a/Makefile.SH +++ b/Makefile.SH @@ -1407,7 +1407,7 @@ test.torture torturetest: test_prep minitest.utf16: minitest.prep - cd t && (rm -f $(PERL_EXE); $(LNS) ../$(MINIPERL_EXE) $(PERL_EXE)) \ - && $(RUN_PERL) TEST -minitest -utf16 base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t </dev/tty + && $(RUN_PERL) TEST -utf16 base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t </dev/tty test.utf16 check.utf16: test_prep TEST_ARGS=-utf16 $(RUN_TESTS) choose @@ -1466,7 +1466,7 @@ minitest.prep: # is crashing. minitest: $(MINIPERL_EXE) minitest.prep - cd t && (rm -f $(PERL_EXE); $(LNS) ../$(MINIPERL_EXE) $(PERL_EXE)) \ - && $(RUN_PERL) TEST -minitest base/*.t comp/*.t cmd/*.t run/*.t io/*.t re/*.t op/*.t uni/*.t </dev/tty + && $(RUN_PERL) TEST base/*.t comp/*.t cmd/*.t run/*.t io/*.t re/*.t op/*.t uni/*.t </dev/tty # Test via harness |