diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2009-03-31 13:31:00 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2009-03-31 13:31:00 (GMT) |
commit | 1e6da5c39f7d745841f350d2de8c4461e6b8a397 (patch) | |
tree | f49e6e0c7f84a91410d9e3bda5ae5bff487426b6 /Makefile.pre.in | |
parent | e392b357e9ded42130b7f2d32992dfe7778b801c (diff) | |
download | cpython-1e6da5c39f7d745841f350d2de8c4461e6b8a397.zip cpython-1e6da5c39f7d745841f350d2de8c4461e6b8a397.tar.gz cpython-1e6da5c39f7d745841f350d2de8c4461e6b8a397.tar.bz2 |
Update quicktest to match Python 3 branch
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 1c2d1f0..4ca75b5 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -709,9 +709,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_linuxaudiodev test_struct test_sunaudiodev 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) |