Skip to content

Commit 8392327

Browse files
[test] update tags (#117)
`test03_stllike_preinc` fixed by compiler-research/CppInterOp#401 others fixed by compiler-research/CppInterOp#394
1 parent a410060 commit 8392327

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

test/test_doc_features.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ def pythonizor(klass, name):
613613
i2 = Integer2(13)
614614
assert int(i2) == 13
615615

616-
@mark.xfail
616+
@mark.xfail(condition=IS_MAC and not IS_CLANG_REPL, reason="Fails on OSX Cling")
617617
def test06_add_operator(self):
618618
"""Add operator+"""
619619

test/test_operators.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,6 @@ def test09_templated_operator(self):
232232

233233
assert (TOIClass() < 1)
234234

235-
@mark.xfail
236235
def test10_r_non_associative(self):
237236
"""Use of radd/rmul with non-associative types"""
238237

@@ -354,7 +353,6 @@ def test15_class_and_global_mix(self):
354353
assert std.max_element(x.begin(), x.end())-x.begin() == 2
355354
assert (x.end() - 3).__deref__() == 1
356355

357-
@mark.xfail
358356
def test16_global_ordered_operators(self):
359357
"""Globally defined ordered oeprators"""
360358

test/test_stltypes.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1413,7 +1413,6 @@ def test02_STL_like_class_iterators(self):
14131413
assert len(b) == 3
14141414
assert sum(b) == 6
14151415

1416-
@mark.xfail(condition=not IS_MAC and IS_CLANG_REPL, run=False, reason="Crashes on Ubuntu cling-REPL")
14171416
def test03_stllike_preinc(self):
14181417
"""STL-like class with preinc by-ref returns"""
14191418

0 commit comments

Comments
 (0)