[Python-checkins] r46763 - python/trunk/Lib/test/regrtest.py

tim.peters python-checkins at python.org
Fri Jun 9 05:09:44 CEST 2006


Author: tim.peters
Date: Fri Jun  9 05:09:42 2006
New Revision: 46763

Modified:
   python/trunk/Lib/test/regrtest.py
Log:
To boost morale :-), force test_optparse to run immediately
after test_file until we can figure out how to fix it.
(See python-dev; at the moment we don't even know which checkin
caused the problem.)


Modified: python/trunk/Lib/test/regrtest.py
==============================================================================
--- python/trunk/Lib/test/regrtest.py	(original)
+++ python/trunk/Lib/test/regrtest.py	Fri Jun  9 05:09:42 2006
@@ -344,6 +344,11 @@
         tests = tests[:1]
     if randomize:
         random.shuffle(tests)
+        # XXX Temporary hack to force test_optparse to run immediately
+        # XXX after test_file.  This should go away as soon as we fix
+        # XXX whatever it is that's causing that to fail.
+        tests.remove("test_file")
+        tests.insert(tests.index("test_optparse"), "test_file")
     if trace:
         import trace
         tracer = trace.Trace(ignoredirs=[sys.prefix, sys.exec_prefix],


More information about the Python-checkins mailing list