File: 04_FIXME_use_after_close.patch

package info (click to toggle)
pypy3 7.3.11%2Bdfsg-2%2Bdeb12u3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 201,024 kB
  • sloc: python: 1,950,308; ansic: 517,580; sh: 21,417; asm: 14,419; cpp: 4,263; makefile: 4,228; objc: 761; xml: 530; exp: 499; javascript: 314; pascal: 244; lisp: 45; csh: 11; awk: 4
file content (20 lines) | stat: -rw-r--r-- 947 bytes parent folder | download
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
+