diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2010-04-12 05:22:25 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2010-04-12 05:22:25 +0000 |
commit | 5a96543b367ab520033f47df34611c6dfdcfb1ab (patch) | |
tree | 811cbb865ce827488912fc505f9b1d86e5fc6148 /Lib/test/test_gdb.py | |
parent | 7f7765ce39a07e3f71b98c9d34af262105ca9c94 (diff) | |
download | cpython-git-5a96543b367ab520033f47df34611c6dfdcfb1ab.tar.gz |
Re-enable all tests, to see which ones fail on the buildbots.
Diffstat (limited to 'Lib/test/test_gdb.py')
-rw-r--r-- | Lib/test/test_gdb.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py index ba692bfa99..2b9e4adbfd 100644 --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -663,12 +663,12 @@ class PyLocalsTests(DebuggerTests): 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__": |