1 2 3 4 5 6 7 8 9 10 11 12
|
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")
|