GH-114013: fix setting HOSTRUNNER for Tools/wasm/wasi.py (GH-114097)

Also fix tests found failing under a pydebug build of WASI thanks to `make test` working due to this change.
This commit is contained in:
Brett Cannon 2024-01-16 11:36:41 -08:00 committed by GitHub
parent 3d5df54cdc
commit 03f7839703
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 15 additions and 12 deletions

View file

@ -69,7 +69,7 @@ class UserListTest(list_tests.CommonTest):
# Decorate existing test with recursion limit, because
# the test is for C structure, but `UserList` is a Python structure.
test_repr_deep = support.infinite_recursion()(
test_repr_deep = support.infinite_recursion(25)(
list_tests.CommonTest.test_repr_deep,
)