More gdb test disabling.
authorRobert Bradshaw <robertwb@math.washington.edu>
Thu, 9 Dec 2010 13:29:34 +0000 (05:29 -0800)
committerRobert Bradshaw <robertwb@math.washington.edu>
Thu, 9 Dec 2010 13:29:34 +0000 (05:29 -0800)
Cython/Compiler/Tests/TestParseTreeTransforms.py
runtests.py

index adf8105fc57a695ce7bf527f5fb0345064adcc1e..30e4389dcf61b6b85d3cfa78348cd49963c92c7f 100644 (file)
@@ -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:
index 81d504d00c773a1e3596a0e3c66d90e3b08f26cf..fae603948b89305fa6896fa708c5d997f4713934 100644 (file)
@@ -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):