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

@ -310,7 +310,7 @@ class TestIsInstanceIsSubclass(unittest.TestCase):
@property @property
def __bases__(self): def __bases__(self):
return self.__bases__ return self.__bases__
with support.infinite_recursion(): with support.infinite_recursion(25):
self.assertRaises(RecursionError, issubclass, X(), int) self.assertRaises(RecursionError, issubclass, X(), int)
self.assertRaises(RecursionError, issubclass, int, X()) self.assertRaises(RecursionError, issubclass, int, X())
self.assertRaises(RecursionError, isinstance, 1, X()) self.assertRaises(RecursionError, isinstance, 1, X())

View File

@ -221,7 +221,7 @@ class MiscTest(unittest.TestCase):
self.assertRaises(Exc, func, Bad()) self.assertRaises(Exc, func, Bad())
@support.no_tracing @support.no_tracing
@support.infinite_recursion() @support.infinite_recursion(25)
def test_recursion(self): def test_recursion(self):
# Check that comparison for recursive objects fails gracefully # Check that comparison for recursive objects fails gracefully
from collections import UserList from collections import UserList

View File

@ -5684,7 +5684,7 @@ class ForwardRefTests(BaseTestCase):
def cmp(o1, o2): def cmp(o1, o2):
return o1 == o2 return o1 == o2
with infinite_recursion(): with infinite_recursion(25):
r1 = namespace1() r1 = namespace1()
r2 = namespace2() r2 = namespace2()
self.assertIsNot(r1, r2) self.assertIsNot(r1, r2)

View File

@ -215,7 +215,7 @@ class UserDictTest(mapping_tests.TestHashMappingProtocol):
# Decorate existing test with recursion limit, because # Decorate existing test with recursion limit, because
# the test is for C structure, but `UserDict` is a Python structure. # the test is for C structure, but `UserDict` is a Python structure.
test_repr_deep = support.infinite_recursion()( test_repr_deep = support.infinite_recursion(25)(
mapping_tests.TestHashMappingProtocol.test_repr_deep, mapping_tests.TestHashMappingProtocol.test_repr_deep,
) )

View File

@ -69,7 +69,7 @@ class UserListTest(list_tests.CommonTest):
# Decorate existing test with recursion limit, because # Decorate existing test with recursion limit, because
# the test is for C structure, but `UserList` is a Python structure. # 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, list_tests.CommonTest.test_repr_deep,
) )

View File

@ -2535,7 +2535,7 @@ class BadElementTest(ElementTestCase, unittest.TestCase):
e.extend([ET.Element('bar')]) e.extend([ET.Element('bar')])
self.assertRaises(ValueError, e.remove, X('baz')) self.assertRaises(ValueError, e.remove, X('baz'))
@support.infinite_recursion() @support.infinite_recursion(25)
def test_recursive_repr(self): def test_recursive_repr(self):
# Issue #25455 # Issue #25455
e = ET.Element('foo') e = ET.Element('foo')

View File

@ -0,0 +1,4 @@
Fix ``Tools/wasm/wasi.py`` to not include the path to ``python.wasm`` as
part of ``HOSTRUNNER``. The environment variable is meant to specify how to
run the WASI host only, having ``python.wasm`` and relevant flags appended
to the ``HOSTRUNNER``. This fixes ``make test`` work.

View File

@ -233,9 +233,10 @@ def configure_wasi_python(context, working_dir):
env=updated_env(env_additions | wasi_sdk_env(context)), env=updated_env(env_additions | wasi_sdk_env(context)),
quiet=context.quiet) quiet=context.quiet)
python_wasm = working_dir / "python.wasm"
exec_script = working_dir / "python.sh" exec_script = working_dir / "python.sh"
with exec_script.open("w", encoding="utf-8") as file: with exec_script.open("w", encoding="utf-8") as file:
file.write(f'#!/bin/sh\nexec {host_runner} "$@"\n') file.write(f'#!/bin/sh\nexec {host_runner} {python_wasm} "$@"\n')
exec_script.chmod(0o755) exec_script.chmod(0o755)
print(f"🏃‍♀️ Created {exec_script} ... ") print(f"🏃‍♀️ Created {exec_script} ... ")
sys.stdout.flush() sys.stdout.flush()
@ -272,9 +273,7 @@ def main():
# Map the checkout to / to load the stdlib from /Lib. # Map the checkout to / to load the stdlib from /Lib.
"--dir {HOST_DIR}::{GUEST_DIR} " "--dir {HOST_DIR}::{GUEST_DIR} "
# Set PYTHONPATH to the sysconfig data. # Set PYTHONPATH to the sysconfig data.
"--env {ENV_VAR_NAME}={ENV_VAR_VALUE} " "--env {ENV_VAR_NAME}={ENV_VAR_VALUE}")
# Path to the WASM binary.
"{PYTHON_WASM}")
parser = argparse.ArgumentParser() parser = argparse.ArgumentParser()
subcommands = parser.add_subparsers(dest="subcommand") subcommands = parser.add_subparsers(dest="subcommand")
@ -310,8 +309,8 @@ def main():
"$WASI_SDK_PATH or /opt/wasi-sdk") "$WASI_SDK_PATH or /opt/wasi-sdk")
subcommand.add_argument("--host-runner", action="store", subcommand.add_argument("--host-runner", action="store",
default=default_host_runner, dest="host_runner", default=default_host_runner, dest="host_runner",
help="Command template for running the WebAssembly " help="Command template for running the WASI host "
"code (default meant for wasmtime 14 or newer: " "(default designed for wasmtime 14 or newer: "
f"`{default_host_runner}`)") f"`{default_host_runner}`)")
context = parser.parse_args() context = parser.parse_args()