From a5fdf247fccff9e787cedfa44f1dede5ed15c847 Mon Sep 17 00:00:00 2001 From: Padraic Fanning Date: Sun, 2 May 2021 11:40:50 -0400 Subject: [PATCH] Mark stack overflow on Windows --- Lib/test/test_runpy.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_runpy.py b/Lib/test/test_runpy.py index 193266dd7..c7e5a68a6 100644 --- a/Lib/test/test_runpy.py +++ b/Lib/test/test_runpy.py @@ -736,6 +736,7 @@ class RunPathTestCase(unittest.TestCase, CodeExecutionMixin): msg = "can't find '__main__' module in %r" % zip_name self._check_import_error(zip_name, msg) + @unittest.skipIf(sys.platform == "win32", "TODO: RUSTPYTHON, thread 'main' has overflowed its stack") @no_tracing def test_main_recursion_error(self): with temp_dir() as script_dir, temp_dir() as dummy_dir: