summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2009-03-27 21:24:45 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2009-03-27 21:24:45 (GMT)
commitfdd6dee684d0e71cc038a981279f53151faf20dd (patch)
treec06fa6ad728072e76a38caa193346c82f5b68267 /Makefile.pre.in
parent236654b82df30b2df5edf72cd808f792cdde9d3a (diff)
downloadcpython-fdd6dee684d0e71cc038a981279f53151faf20dd.zip
cpython-fdd6dee684d0e71cc038a981279f53151faf20dd.tar.gz
cpython-fdd6dee684d0e71cc038a981279f53151faf20dd.tar.bz2
Update the tests skipped with quicktest target.
Some tests that used to be slow are now fast, and there are brand new slow tests.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index 0f84c88..dc1d197 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -727,9 +727,10 @@ buildbottest: all platform
fi
$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall -rw
-QUICKTESTOPTS= $(TESTOPTS) -x test_thread test_signal test_strftime \
- test_unicodedata test_re test_sre test_select test_poll \
- test_struct test_zlib
+QUICKTESTOPTS= $(TESTOPTS) -x test_subprocess test_io test_lib2to3 \
+ test_multibytecodec test_urllib2_localnet test_itertools \
+ test_multiprocessing test_mailbox test_socket test_poll \
+ test_select test_zipfile
quicktest: all platform
-find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
-$(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)