Skip to content

Commit

Permalink
Enable crashes that pass
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronj0 committed Nov 4, 2024
1 parent 8350aa0 commit a0efea0
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion test/test_fragile.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ def test07_unnamed_enum(self):

g = fragile.G()

@mark.xfail(condition=IS_CLANG_REPL, run=False, reason="Crashes on Clang-REPL")
def test08_unhandled_scoped_datamember(self):
"""Test that an unhandled scoped data member does not cause infinite recursion"""

Expand Down
2 changes: 1 addition & 1 deletion test/test_lowlevel.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import py, os, sys
from pytest import raises, skip, mark
from .support import setup_make, pylong, pyunicode, IS_WINDOWS, ispypy, IS_CLANG_REPL, IS_MAC_ARM, IS_MAC_X86, IS_MAC
from .support import setup_make, pylong, pyunicode, IS_WINDOWS, ispypy, IS_CLANG_REPL, IS_MAC

currpath = py.path.local(__file__).dirpath()
test_dct = str(currpath.join("datatypesDict"))
Expand Down
1 change: 0 additions & 1 deletion test/test_numba.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ def compare(self, go_slow, go_fast, N, *args):

return fast_time < slow_time

@mark.xfail
def test01_compiled_free_func(self):
"""Numba-JITing of a compiled free function"""

Expand Down
1 change: 0 additions & 1 deletion test/test_stltypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1547,7 +1547,6 @@ def test02_array_of_pods(self):
assert a[2].px == 6
assert a[2].py == 7

@mark.xfail(run=False, reason="Crashes")
def test03_array_of_pointer_to_pods(self):
"""Usage of std::array of pointer to PODs"""

Expand Down

0 comments on commit a0efea0

Please sign in to comment.