Skip to content

Commit b49d3e0

Browse files
committed
Address OS X specific tags
1 parent 15f7b5b commit b49d3e0

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

test/test_conversions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ def test03_error_handling(self):
8787
gc.collect()
8888
assert CC.s_count == 0
8989

90+
@mark.xfail(condition = IS_MAC and IS_CLANG_REPL)
9091
def test04_implicit_conversion_from_tuple(self):
9192
"""Allow implicit conversions from tuples as arguments {}-like"""
9293

test/test_crossinheritance.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1033,6 +1033,7 @@ def return_const(self):
10331033
assert a.return_const().m_value == "abcdef"
10341034
assert ns.callit(a).m_value == "abcdef"
10351035

1036+
@mark.xfail(condition = IS_MAC and IS_CLANG_REPL)
10361037
def test24_non_copyable(self):
10371038
"""Inheriting from a non-copyable base class"""
10381039

test/test_regression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1088,7 +1088,7 @@ def test37_array_of_pointers_argument(self):
10881088

10891089
assert cppyy.addressof(res) == cppyy.addressof(arr)
10901090

1091-
@mark.xfail(condition = (IS_MAC and not IS_CLANG_REPL), reason = "Fails on OS X Cling")
1091+
@mark.xfail(run = False, condition = (IS_MAC and not IS_CLANG_REPL), reason = "Crashes on OS X Cling")
10921092
def test38_char16_arrays(self):
10931093
"""Access to fixed-size char16 arrays as data members"""
10941094

test/test_templates.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -776,6 +776,7 @@ class Atom {
776776
a = ns.Atom(1567.0)
777777
assert a.m_m == 1567.0
778778

779+
@mark.xfail(condition = IS_MAC and IS_CLANG_REPL)
779780
def test28_enum_in_constructor(self):
780781
"""Use of enums in template function as constructor"""
781782

0 commit comments

Comments
 (0)