From: Gurusamy Sarathy Date: Thu, 17 Aug 2000 01:03:52 +0000 (+0000) Subject: add "ok" targets from change#6632 in makefile.mk X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a6f858fb2719161c2b122286fdbda3043da1ded3;p=p5sagit%2Fp5-mst-13.2.git add "ok" targets from change#6632 in makefile.mk p4raw-link: @6632 on //depot/perl: 017e10814b1e1d25c7506a0b0903863aee5cb0ca p4raw-id: //depot/perl@6665 --- diff --git a/pod/perlport.pod b/pod/perlport.pod index 832f8db..97bbd5e 100644 --- a/pod/perlport.pod +++ b/pod/perlport.pod @@ -1753,7 +1753,7 @@ two seconds. (Win32) Not implemented. (S, VOS) Can only be applied to process handles returned for processes spawned -using C. (Win32) +using C or pseudo processes created with C. (Win32) Not useful. (S) diff --git a/win32/Makefile b/win32/Makefile index 30b2d48..b0962c1 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -1095,17 +1095,15 @@ clean : # 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 +# If you want to report test failures, use "nmake nok" instead. +ok: utils $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -okfile: utils +okfile: utils $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok -nok: utils +nok: utils $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -nokfile: utils +nokfile: utils $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok - - diff --git a/win32/makefile.mk b/win32/makefile.mk index 6722a5e..eee98d5 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -1301,3 +1301,19 @@ 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 "dmake 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