diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-06-09 05:12:40 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-06-09 05:12:40 (GMT) |
commit | 71dc0a043b288fe70d85addbef0dc361246d8d1c (patch) | |
tree | e076d7af9e119f66433bead2647bc8d369d990d9 /Lib/test/regrtest.py | |
parent | 0556e9b119c6ea1068d84dd26763e4862047e808 (diff) | |
download | cpython-71dc0a043b288fe70d85addbef0dc361246d8d1c.zip cpython-71dc0a043b288fe70d85addbef0dc361246d8d1c.tar.gz cpython-71dc0a043b288fe70d85addbef0dc361246d8d1c.tar.bz2 |
Remove the temporary hack to force test_optparse to
run immediately after test_file. At least 8 buildbot
boxes passed since the underlying problem got fixed,
and they all failed before the fix, so there's no point
to this anymore.
Diffstat (limited to 'Lib/test/regrtest.py')
-rwxr-xr-x | Lib/test/regrtest.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index d146eb0..ca4a3b5 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -344,11 +344,6 @@ def main(tests=None, testdir=None, verbose=0, quiet=False, generate=False, 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], |