add "ok" targets from change#6632 in makefile.mk
authorGurusamy Sarathy <gsar@cpan.org>
Thu, 17 Aug 2000 01:03:52 +0000 (01:03 +0000)
committerGurusamy Sarathy <gsar@cpan.org>
Thu, 17 Aug 2000 01:03:52 +0000 (01:03 +0000)
p4raw-link: @6632 on //depot/perl: 017e10814b1e1d25c7506a0b0903863aee5cb0ca

p4raw-id: //depot/perl@6665

pod/perlport.pod
win32/Makefile
win32/makefile.mk

index 832f8db..97bbd5e 100644 (file)
@@ -1753,7 +1753,7 @@ two seconds. (Win32)
 Not implemented. (S<Mac OS>, VOS)
 
 Can only be applied to process handles returned for processes spawned
-using C<system(1, ...)>. (Win32)
+using C<system(1, ...)> or pseudo processes created with C<fork()>. (Win32)
 
 Not useful. (S<RISC OS>)
 
index 30b2d48..b0962c1 100644 (file)
@@ -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
index 6722a5e..eee98d5 100644 (file)
@@ -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