From: Prymmer/Kahn Date: Mon, 14 Aug 2000 22:42:06 +0000 (-0700) Subject: make ok etc also for win32. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=017e10814b1e1d25c7506a0b0903863aee5cb0ca;p=p5sagit%2Fp5-mst-13.2.git make ok etc also for win32. Subject: [ID 20000814.008] Not OK: perl v5.6.0 (6620) on MSWin32-x86 4.0 (UNINSTALLED) Message-Id: p4raw-id: //depot/perl@6632 --- diff --git a/win32/Makefile b/win32/Makefile index 1bcda28..30b2d48 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -1091,3 +1091,21 @@ clean : -@erase ..\x2p\*.exe ..\x2p\*.bat -@erase *.ilk -@erase *.pdb + +# Handy way to run perlbug -ok without having to install and run the +# installed perlbug. We don't re-run the tests here - we trust the user. +# Please *don't* use this unless all tests pass. +# If you want to report test failures, use "make nok" instead. +ok: utils + $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" + +okfile: utils + $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok + +nok: utils + $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" + +nokfile: utils + $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok + +