diff options
author | Yves Orton <demerphq@gmail.com> | 2005-02-19 12:00:08 +0100 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-02-23 12:28:55 +0000 |
commit | 89087c85554906f75168ff676e546ecaa383a9c4 (patch) | |
tree | 6dd08454915fe35605076bc2ca63bec6c8aa8c48 | |
parent | 66e09d83129b69ae14a81397dfc3921f2930216c (diff) | |
download | perl-89087c85554906f75168ff676e546ecaa383a9c4.tar.gz |
Patch Win32 makefiles for blead to allow parameters to be passed to harness:
Message-ID: <9b18b31105021902003d9c2a95@mail.gmail.com>
p4raw-id: //depot/perl@23992
-rw-r--r-- | win32/Makefile | 6 | ||||
-rw-r--r-- | win32/makefile.mk | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/win32/Makefile b/win32/Makefile index 112b40511b..40ea15e9ee 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -1183,13 +1183,13 @@ test-prep : all utils test : test-prep cd ..\t - $(PERLEXE) -I..\lib harness + $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES) cd ..\win32 test-notty : test-prep set PERL_SKIP_TTY_TEST=1 cd ..\t - $(PERLEXE) -I..\lib harness + $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES) cd ..\win32 _test : @@ -1197,7 +1197,7 @@ _test : $(XCOPY) $(PERLDLL) ..\t\$(NULL) $(XCOPY) $(GLOBEXE) ..\t\$(NULL) cd ..\t - $(PERLEXE) -I..\lib harness + $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES) cd ..\win32 # the doubled rmdir calls are needed because older cmd shells diff --git a/win32/makefile.mk b/win32/makefile.mk index 130ee19361..fdb50ca77b 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -1363,11 +1363,11 @@ test-prep : all utils .ENDIF test : $(RIGHTMAKE) test-prep - cd ..\t && $(PERLEXE) -I..\lib harness + cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES) test-notty : test-prep set PERL_SKIP_TTY_TEST=1 && \ - cd ..\t && $(PERLEXE) -I.\lib harness + cd ..\t && $(PERLEXE) -I.\lib harness $(TEST_SWITCHES) $(TEST_FILES) _test : $(RIGHTMAKE) $(XCOPY) $(PERLEXE) ..\t\$(NULL) @@ -1377,7 +1377,7 @@ _test : $(RIGHTMAKE) .ELSE $(XCOPY) $(GLOBEXE) ..\t\$(NULL) .ENDIF - cd ..\t && $(PERLEXE) -I..\lib harness + cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES) # the doubled rmdir calls are needed because older cmd shells # don't understand /q |