diff options
author | Prymmer/Kahn <pvhp@best.com> | 2000-08-14 15:42:06 -0700 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-15 13:58:48 +0000 |
commit | 017e10814b1e1d25c7506a0b0903863aee5cb0ca (patch) | |
tree | 79765744b3a6ead56d96487997ad141ea6efd8f9 /win32/Makefile | |
parent | 99e89e1e858bb38487deb1f7e553bcf4759385b8 (diff) | |
download | perl-017e10814b1e1d25c7506a0b0903863aee5cb0ca.tar.gz |
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: <Pine.BSF.4.21.0008142240280.3888-100000@shell8.ba.best.com>
p4raw-id: //depot/perl@6632
Diffstat (limited to 'win32/Makefile')
-rw-r--r-- | win32/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/win32/Makefile b/win32/Makefile index 1bcda2878c..30b2d487a3 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 + + |