Skip to content

Commit 3f06ee3

Browse files
aaronj0vgvassilev
authored andcommitted
Update test tags based on dispatcher fix
1 parent 995d9e6 commit 3f06ee3

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

test/test_crossinheritance.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,6 @@ def get_value(self):
291291

292292
assert raises(TypeError, Base1.call_get_value, d)
293293

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

@@ -1521,7 +1520,6 @@ def getValue(self):
15211520
gc.collect()
15221521
assert ns.Component.get_count() == 0
15231522

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

test/test_doc_features.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,6 @@ def abstract_method(self):
436436
pc = PyConcrete4()
437437
assert call_abstract_method(pc) == "Hello, Python World! (4)"
438438

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

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

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

test/test_leakcheck.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,6 @@ class MyClass04 {
185185
self.check_func(m, 'method_default', b=-99)
186186
self.check_func(m, 'method_default', c=-99)
187187

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

0 commit comments

Comments
 (0)