diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-19 18:54:01 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-19 18:54:01 (GMT) |
commit | 89ba56d5fb1335ef808b87cd33cba95ea141c65d (patch) | |
tree | 611d573f4e2f2a2e29d35a054b1171ac9086c068 /Lib/test/test_crashers.py | |
parent | c9b49f8759f477966c18f40b5b2e4720e7de595c (diff) | |
download | cpython-89ba56d5fb1335ef808b87cd33cba95ea141c65d.zip cpython-89ba56d5fb1335ef808b87cd33cba95ea141c65d.tar.gz cpython-89ba56d5fb1335ef808b87cd33cba95ea141c65d.tar.bz2 |
Skip crasher tests
Diffstat (limited to 'Lib/test/test_crashers.py')
-rw-r--r-- | Lib/test/test_crashers.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_crashers.py b/Lib/test/test_crashers.py index 86f88f7..336ccbe 100644 --- a/Lib/test/test_crashers.py +++ b/Lib/test/test_crashers.py @@ -17,6 +17,7 @@ infinite_loops = ["infinite_loop_re.py", "nasty_eq_vs_dict.py"] class CrasherTest(unittest.TestCase): + @unittest.skip("these tests are too fragile") @test.support.cpython_only def test_crashers_crash(self): for fname in glob.glob(CRASHER_FILES): |