From: Robert Bradshaw Date: Thu, 9 Dec 2010 13:29:34 +0000 (-0800) Subject: More gdb test disabling. X-Git-Tag: 0.14.beta2~2 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=fe356e1f5e77d0318a0ab8bfe95a409effd011a7;p=cython.git More gdb test disabling. --- diff --git a/Cython/Compiler/Tests/TestParseTreeTransforms.py b/Cython/Compiler/Tests/TestParseTreeTransforms.py index adf8105f..30e4389d 100644 --- a/Cython/Compiler/Tests/TestParseTreeTransforms.py +++ b/Cython/Compiler/Tests/TestParseTreeTransforms.py @@ -144,8 +144,7 @@ class TestWithTransform(object): # (TransformTest): # Disabled! """, t) -# TODO: Re-enable once they're more robust. -if sys.version_info[:2] >= (2, 5) and False: +if sys.version_info[:2] >= (2, 5): from Cython.Debugger import DebugWriter from Cython.Debugger.Tests.TestLibCython import DebuggerTestCase else: diff --git a/runtests.py b/runtests.py index 81d504d0..fae60394 100644 --- a/runtests.py +++ b/runtests.py @@ -644,7 +644,8 @@ class CythonUnitTestCase(CythonCompileTestCase): except Exception: pass -include_debugger = sys.version_info[:2] > (2, 4) +# TODO: Re-enable once they're more robust. +include_debugger = sys.version_info[:2] >= (2, 5) and False def collect_unittests(path, module_prefix, suite, selectors): def file_matches(filename):