Skip to content

Commit

Permalink
Update test tags based on dispatcher fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronj0 committed Jun 7, 2024
1 parent 4e34223 commit 21035f8
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
2 changes: 0 additions & 2 deletions test/test_crossinheritance.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,6 @@ def get_value(self):

assert raises(TypeError, Base1.call_get_value, d)

@mark.xfail(condition=IS_CLANG_REPL, reason="Fails on Clang-REPL")
def test10_python_in_templates(self):
"""Usage of Python derived objects in std::vector"""

Expand Down Expand Up @@ -1521,7 +1520,6 @@ def getValue(self):
gc.collect()
assert ns.Component.get_count() == 0

@mark.xfail(condition=IS_CLANG_REPL, reason="Fails with ClangRepl")
def test32_by_value_arguments(self):
"""Override base function taking by-value arguments"""

Expand Down
3 changes: 1 addition & 2 deletions test/test_doc_features.py
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,6 @@ def abstract_method(self):
pc = PyConcrete4()
assert call_abstract_method(pc) == "Hello, Python World! (4)"

@mark.xfail(condition=IS_CLANG_REPL, reason="Fails with ClangRepl")
def test_multi_x_inheritance(self):
"""Multiple cross-inheritance"""

Expand Down Expand Up @@ -1131,7 +1130,7 @@ def add(self, i):
m = PyMyClass(1)
assert CC.callb(m, 2) == 5

@mark.xfail(run=not IS_MAC_ARM, condition=IS_CLANG_REPL, reason="Fails with ClangRepl, Crashes on OS X arm")
@mark.xfail(run=not IS_MAC_ARM, condition=IS_MAC_ARM, reason="Crashes on OS X arm")
def test_cross_and_templates(self):
"""Template instantiation with cross-inheritance example"""

Expand Down
1 change: 0 additions & 1 deletion test/test_leakcheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,6 @@ class MyClass04 {
self.check_func(m, 'method_default', b=-99)
self.check_func(m, 'method_default', c=-99)

@mark.skipif(IS_CLANG_REPL, reason="Seg faults on Clang when entire test suite is run, passes if only test_leakcheck is run")
def test05_aggregates(self):
"""Leak test of aggregate creation"""

Expand Down

0 comments on commit 21035f8

Please sign in to comment.