1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
diff --git a/extra_tests/hpy_tests/_vendored/debug/test_handles_invalid.py b/extra_tests/hpy_tests/_vendored/debug/test_handles_invalid.py
--- a/extra_tests/hpy_tests/_vendored/debug/test_handles_invalid.py
+++ b/extra_tests/hpy_tests/_vendored/debug/test_handles_invalid.py
@@ -33,6 +33,8 @@ def test_no_invalid_handle(compiler, hpy
assert hpy_debug_capture.invalid_handles_count == 0
+@pytest.mark.skipif(sys.implementation.name == 'pypy',
+ reason="Cannot recover from use-after-close on pypy")
def test_cant_use_closed_handle(compiler, hpy_debug_capture):
mod = compiler.make_module("""
HPyDef_METH(f, "f", f_impl, HPyFunc_O, .doc="double close")
@@ -153,4 +155,5 @@ def test_invalid_handle_crashes_python_i
@INIT
""")
result = python_subprocess.run(mod, "mod.f(42);")
- assert result.returncode == fatal_exit_code
\ No newline at end of file
+ assert result.returncode == fatal_exit_code
+
|