File: 04_FIXME_use_after_close.patch

package info (click to toggle)
pypy3 7.3.19%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 212,236 kB
  • sloc: python: 2,098,316; ansic: 540,565; sh: 21,462; asm: 14,419; cpp: 4,451; makefile: 4,209; objc: 761; xml: 530; exp: 499; javascript: 314; pascal: 244; lisp: 45; csh: 12; awk: 4
file content (12 lines) | stat: -rw-r--r-- 678 bytes parent folder | download | duplicates (2)
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")