From 2a850d91bcc90b4840721d803ad9741b2fce53ee Mon Sep 17 00:00:00 2001 From: Jeremy Hylton Date: Thu, 1 Feb 2001 19:51:28 +0000 Subject: [PATCH] add quicktest target -- runs test suite except for the eight slowest tests --- Makefile.pre.in | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile.pre.in b/Makefile.pre.in index 3c1d336c041..6f3da66f3f8 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -472,6 +472,13 @@ test: all platform -PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) +QUICKTESTOPTS= $(TESTOPTS) -x test_thread test_signal test_strftime \ + test_unicodedata test_re test_sre test_select test_poll +quicktest: all platform + -rm -f $(srcdir)/Lib/test/*.py[co] + -PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS) + PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS) + # Install everything install: altinstall bininstall maninstall