diff options
author | Tony Cook <tony@develop-help.com> | 2014-12-08 10:48:32 +1100 |
---|---|---|
committer | Tony Cook <tony@develop-help.com> | 2015-01-06 09:30:28 +1100 |
commit | 11fbb0483cbc270c7e9296703ee04bba03a3e00a (patch) | |
tree | cdc38d87427eeaf51db9af2d1defbe7d45fb7bd3 /win32 | |
parent | 216b3a07e3859be14fc65f24014d7895e53fb6aa (diff) | |
download | perl-11fbb0483cbc270c7e9296703ee04bba03a3e00a.tar.gz |
use TEST for minitest, same as POSIX systems
Test::Harness now requires IO at all times, which means it can't
be used with miniperl
many tests fail with minitest at this point
Diffstat (limited to 'win32')
-rw-r--r-- | win32/Makefile | 2 | ||||
-rw-r--r-- | win32/makefile.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/win32/Makefile b/win32/Makefile index 8e700abd24..cee9d70e0a 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -1320,7 +1320,7 @@ minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) utils $(UNIDATAFILES) attrib -r ..\t\*.* cd ..\t && \ # Note this perl.exe is miniperl - perl.exe harness base/*.t comp/*.t cmd/*.t io/*.t opbasic/*.t op/*.t pragma/*.t + perl.exe TEST base/*.t comp/*.t cmd/*.t io/*.t opbasic/*.t op/*.t pragma/*.t test-prep : all utils ../pod/perltoc.pod $(XCOPY) $(PERLEXE) ..\t\$(NULL) diff --git a/win32/makefile.mk b/win32/makefile.mk index 1c16dba5e2..ce8c94333b 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -1597,7 +1597,7 @@ minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) $(UNIDATAFILES) utils attrib -r ..\t\*.* cd ..\t && \ # Note this perl.exe is miniperl - perl.exe harness base/*.t comp/*.t cmd/*.t io/*.t opbasic/*.t op/*.t pragma/*.t + perl.exe TEST base/*.t comp/*.t cmd/*.t io/*.t opbasic/*.t op/*.t pragma/*.t test-prep : all utils ..\pod\perltoc.pod $(XCOPY) $(PERLEXE) ..\t\$(NULL) |