[Python-checkins] r42551 - python/trunk/Makefile.pre.in

neal.norwitz python-checkins at python.org
Wed Feb 22 08:24:06 CET 2006


Author: neal.norwitz
Date: Wed Feb 22 08:24:06 2006
New Revision: 42551

Modified:
   python/trunk/Makefile.pre.in
Log:
Allow buildbot to pass extra test flags to regrtest (specifically -r) via the environment.

Modified: python/trunk/Makefile.pre.in
==============================================================================
--- python/trunk/Makefile.pre.in	(original)
+++ python/trunk/Makefile.pre.in	Wed Feb 22 08:24:06 2006
@@ -550,7 +550,7 @@
 # generated bytecode.  This is sometimes a very shy bug needing a lot of
 # sample data.
 
-TESTOPTS=	-l
+TESTOPTS=	-l $(EXTRATESTOPTS)
 TESTPROG=	$(srcdir)/Lib/test/regrtest.py
 TESTPYTHON=	$(RUNSHARED) ./$(BUILDPYTHON) -E -tt
 test:		all platform


More information about the Python-checkins mailing list