Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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