Skip to content

Commit

Permalink
[test] update tags (#117)
Browse files Browse the repository at this point in the history
`test03_stllike_preinc` fixed by compiler-research/CppInterOp#401
others fixed by compiler-research/CppInterOp#394
  • Loading branch information
Vipul-Cariappa authored Jan 6, 2025
1 parent a410060 commit 8392327
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion test/test_doc_features.py
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ def pythonizor(klass, name):
i2 = Integer2(13)
assert int(i2) == 13

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

Expand Down
2 changes: 0 additions & 2 deletions test/test_operators.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,6 @@ def test09_templated_operator(self):

assert (TOIClass() < 1)

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

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

@mark.xfail
def test16_global_ordered_operators(self):
"""Globally defined ordered oeprators"""

Expand Down
1 change: 0 additions & 1 deletion test/test_stltypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1413,7 +1413,6 @@ def test02_STL_like_class_iterators(self):
assert len(b) == 3
assert sum(b) == 6

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

Expand Down

0 comments on commit 8392327

Please sign in to comment.