[Python-checkins] r79987 - python/trunk/Lib/test/test_gdb.py

martin.v.loewis python-checkins at python.org
Mon Apr 12 07:22:26 CEST 2010


Author: martin.v.loewis
Date: Mon Apr 12 07:22:25 2010
New Revision: 79987

Log:
Re-enable all tests, to see which ones fail on the buildbots.


Modified:
   python/trunk/Lib/test/test_gdb.py

Modified: python/trunk/Lib/test/test_gdb.py
==============================================================================
--- python/trunk/Lib/test/test_gdb.py	(original)
+++ python/trunk/Lib/test/test_gdb.py	Mon Apr 12 07:22:25 2010
@@ -663,12 +663,12 @@
                                     r".*\na = 1\nb = 2\nc = 3\n.*")
 
 def test_main():
-    run_unittest(#PrettyPrintTests,
-                 #PyListTests,
-                 #StackNavigationTests,
-                 #PyBtTests,
-                 #PyPrintTests,
-                 #PyLocalsTests
+    run_unittest(PrettyPrintTests,
+                 PyListTests,
+                 StackNavigationTests,
+                 PyBtTests,
+                 PyPrintTests,
+                 PyLocalsTests
                  )
 
 if __name__ == "__main__":


More information about the Python-checkins mailing list