From 7e6a5215e8c46d08703e7a6a971774c789f9a892 Mon Sep 17 00:00:00 2001 From: Mark Shannon Date: Sun, 30 Jul 2023 17:26:03 +0100 Subject: [PATCH] Skip test for WASI due to limited stack depth --- Lib/test/test_ast.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_ast.py b/Lib/test/test_ast.py index a03fa4c7187b05..5346b39043f0f5 100644 --- a/Lib/test/test_ast.py +++ b/Lib/test/test_ast.py @@ -1084,6 +1084,7 @@ def next(self): return self enum._test_simple_enum(_Precedence, ast._Precedence) + @unittest.skipIf(support.is_wasi, "exhausts limited stack on WASI") @support.cpython_only def test_ast_recursion_limit(self): fail_depth = support.EXCEEDS_RECURSION_LIMIT