Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update test tags based on dispatcher fix #87

Merged
merged 2 commits into from
Jun 25, 2024
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: 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
4 changes: 2 additions & 2 deletions test/test_doc_features.py
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ 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")
@mark.xfail(condition=((IS_MAC_X86 or IS_MAC_ARM) and IS_CLANG_REPL), reason="Fails on OSX with Clang-REPL")
def test_multi_x_inheritance(self):
"""Multiple cross-inheritance"""

Expand Down Expand Up @@ -1131,7 +1131,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