[Python-checkins] r43001 - in python/branches/release24-maint: Makefile.pre.in Tools/buildbot/test.bat

martin.v.loewis python-checkins at python.org
Mon Mar 13 14:08:45 CET 2006


Author: martin.v.loewis
Date: Mon Mar 13 14:08:41 2006
New Revision: 43001

Modified:
   python/branches/release24-maint/Makefile.pre.in
   python/branches/release24-maint/Tools/buildbot/test.bat
Log:
Backport of 42994:

Let the buildbot make a single pass in the test suite only.

Modified: python/branches/release24-maint/Makefile.pre.in
==============================================================================
--- python/branches/release24-maint/Makefile.pre.in	(original)
+++ python/branches/release24-maint/Makefile.pre.in	Mon Mar 13 14:08:41 2006
@@ -546,6 +546,10 @@
 		-$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
 		$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
 
+# Like testall, but with a single pass only
+buildbottest:	all platform
+		$(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

Modified: python/branches/release24-maint/Tools/buildbot/test.bat
==============================================================================
--- python/branches/release24-maint/Tools/buildbot/test.bat	(original)
+++ python/branches/release24-maint/Tools/buildbot/test.bat	Mon Mar 13 14:08:41 2006
@@ -1,3 +1,3 @@
 @rem Used by the buildbot "test" step.
 cd PCbuild
-call rt.bat -d -uall -rw
+call rt.bat -d -q -uall -rw


More information about the Python-checkins mailing list