summaryrefslogtreecommitdiffstats
path: root/Lib/test/regrtest.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-06-09 05:12:40 (GMT)
committerTim Peters <tim.peters@gmail.com>2006-06-09 05:12:40 (GMT)
commit71dc0a043b288fe70d85addbef0dc361246d8d1c (patch)
treee076d7af9e119f66433bead2647bc8d369d990d9 /Lib/test/regrtest.py
parent0556e9b119c6ea1068d84dd26763e4862047e808 (diff)
downloadcpython-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-xLib/test/regrtest.py5
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],