Skip to content

Commit a0efea0

Browse files
committed
Enable crashes that pass
1 parent 8350aa0 commit a0efea0

File tree

4 files changed

+1
-4
lines changed

4 files changed

+1
-4
lines changed

test/test_fragile.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,6 @@ def test07_unnamed_enum(self):
145145

146146
g = fragile.G()
147147

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

test/test_lowlevel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import py, os, sys
22
from pytest import raises, skip, mark
3-
from .support import setup_make, pylong, pyunicode, IS_WINDOWS, ispypy, IS_CLANG_REPL, IS_MAC_ARM, IS_MAC_X86, IS_MAC
3+
from .support import setup_make, pylong, pyunicode, IS_WINDOWS, ispypy, IS_CLANG_REPL, IS_MAC
44

55
currpath = py.path.local(__file__).dirpath()
66
test_dct = str(currpath.join("datatypesDict"))

test/test_numba.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ def compare(self, go_slow, go_fast, N, *args):
9595

9696
return fast_time < slow_time
9797

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

test/test_stltypes.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1547,7 +1547,6 @@ def test02_array_of_pods(self):
15471547
assert a[2].px == 6
15481548
assert a[2].py == 7
15491549

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

0 commit comments

Comments
 (0)