Commit 17dc4468 authored by Antoine Pitrou's avatar Antoine Pitrou

Skip test_recursionlimit_fatalerror under Windows because it generates an...

Skip test_recursionlimit_fatalerror under Windows because it generates an annoying and misleading crash dialog.
parent a646587b
......@@ -177,6 +177,9 @@ class SysModuleTest(unittest.TestCase):
def test_recursionlimit_fatalerror(self):
# A fatal error occurs if a second recursion limit is hit when recovering
# from a first one.
if os.name == "nt":
raise unittest.SkipTest(
"under Windows, test would generate a spurious crash dialog")
code = textwrap.dedent("""
import sys
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment