summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2001-02-01 19:51:28 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2001-02-01 19:51:28 (GMT)
commit2a850d91bcc90b4840721d803ad9741b2fce53ee (patch)
treeb6c668a30dd492db3a9bb29ddf78919b1cf0bf68 /Makefile.pre.in
parent6fe0a82ecbd3bdbb028ae2041595bce3fd8b25fb (diff)
downloadcpython-2a850d91bcc90b4840721d803ad9741b2fce53ee.zip
cpython-2a850d91bcc90b4840721d803ad9741b2fce53ee.tar.gz
cpython-2a850d91bcc90b4840721d803ad9741b2fce53ee.tar.bz2
add quicktest target -- runs test suite except for the eight slowest tests
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index 3c1d336..6f3da66 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