Skip to content

Commit 5f7d68e

Browse files
authored
gh-102856: Skip test_mismatched_parens in WASI builds (#103633)
1 parent 1ef61cf commit 5f7d68e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Lib/test/test_fstring.py

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import types
1414
import decimal
1515
import unittest
16+
from test import support
1617
from test.support.os_helper import temp_cwd
1718
from test.support.script_helper import assert_python_failure
1819

@@ -536,6 +537,7 @@ def test_unterminated_string(self):
536537
r"""f'{("x}'""",
537538
])
538539

540+
@unittest.skipIf(support.is_wasi, "exhausts limited stack on WASI")
539541
def test_mismatched_parens(self):
540542
self.assertAllRaise(SyntaxError, r"closing parenthesis '\}' "
541543
r"does not match opening parenthesis '\('",

0 commit comments

Comments
 (0)