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

neal.norwitz python-checkins at python.org
Tue Mar 18 18:58:02 CET 2008


Author: neal.norwitz
Date: Tue Mar 18 18:58:02 2008
New Revision: 61532

Modified:
   python/trunk/Lib/test/regrtest.py
Log:
Get regrtest working when re-running tests

Modified: python/trunk/Lib/test/regrtest.py
==============================================================================
--- python/trunk/Lib/test/regrtest.py	(original)
+++ python/trunk/Lib/test/regrtest.py	Tue Mar 18 18:58:02 2008
@@ -437,8 +437,8 @@
             print "Re-running test %r in verbose mode" % test
             sys.stdout.flush()
             try:
-                test_support.verbose = 1
-                ok = runtest(test, generate, 1, quiet, testdir,
+                test_support.verbose = True
+                ok = runtest(test, generate, True, quiet, test_times, testdir,
                              huntrleaks)
             except KeyboardInterrupt:
                 # print a newline separate from the ^C


More information about the Python-checkins mailing list