diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2008-03-18 17:58:02 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2008-03-18 17:58:02 (GMT) |
commit | 5fe5cf6df20607033096c05d68cef7222a35697c (patch) | |
tree | 9937431a5cdf42ed7237b3574d464f95dab341a6 /Lib/test/regrtest.py | |
parent | ae42f33cdfb68be2fc71be0fb67ec025f90160e8 (diff) | |
download | cpython-5fe5cf6df20607033096c05d68cef7222a35697c.zip cpython-5fe5cf6df20607033096c05d68cef7222a35697c.tar.gz cpython-5fe5cf6df20607033096c05d68cef7222a35697c.tar.bz2 |
Get regrtest working when re-running tests
Diffstat (limited to 'Lib/test/regrtest.py')
-rwxr-xr-x | Lib/test/regrtest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index ff132fb..16f23f3 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -437,8 +437,8 @@ def main(tests=None, testdir=None, verbose=0, quiet=False, generate=False, 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 |