diff --git a/test/test_fragile.py b/test/test_fragile.py index 10f3081d..bab11b98 100644 --- a/test/test_fragile.py +++ b/test/test_fragile.py @@ -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""" diff --git a/test/test_lowlevel.py b/test/test_lowlevel.py index c64d753c..2ab0ef6c 100644 --- a/test/test_lowlevel.py +++ b/test/test_lowlevel.py @@ -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")) diff --git a/test/test_numba.py b/test/test_numba.py index 8749cfa9..5077fdc4 100644 --- a/test/test_numba.py +++ b/test/test_numba.py @@ -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""" diff --git a/test/test_stltypes.py b/test/test_stltypes.py index 8570e22d..1d5d315d 100644 --- a/test/test_stltypes.py +++ b/test/test_stltypes.py @@ -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"""