Skip to content

Commit d0901ae

Browse files
[cppyy] disable tests failing with mac-beta ARM64
fails while compiling codegen from callfunc due to changes in libc++ (ABI)
1 parent 1f849ed commit d0901ae

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

bindings/pyroot/cppyy/cppyy/test/test_cpp11features.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import py, sys, pytest, os
22
from pytest import mark, raises
3-
from support import setup_make, ispypy
3+
from support import setup_make, ispypy, IS_MAC_ARM
44

55

66
currpath = os.getcwd()

bindings/pyroot/cppyy/cppyy/test/test_datatypes.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2356,6 +2356,7 @@ def test48_bool_typemap(self):
23562356
assert str(bt(1)) == 'True'
23572357
assert str(bt(0)) == 'False'
23582358

2359+
@mark.xfail(condition=IS_MAC_ARM, reason="Fails on mac-beta ARM64")
23592360
def test49_addressof_method(self):
23602361
"""Use of addressof for (const) methods"""
23612362

0 commit comments

Comments
 (0)