Skip to content

Commit

Permalink
Try xfail on ctypes array delete to fix valgrind leak
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronj0 authored Apr 28, 2024
1 parent d8a15d5 commit 2eeaad2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_lowlevel.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def test05_array_as_ref(self):
f = array('f', [0]); ctd.set_float_r(f); assert f[0] == 5.
f = array('d', [0]); ctd.set_double_r(f); assert f[0] == -5.

@mark.skipif(not IS_CLANG_REPL, reason="Crashes on Cling")
@mark.xfail
def test06_ctypes_as_ref_and_ptr(self):
"""Use ctypes for pass-by-ref/ptr"""

Expand Down

0 comments on commit 2eeaad2

Please sign in to comment.