Skip to content

Commit

Permalink
skip JIT exceptions test on Mac ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
wlav committed Feb 24, 2022
1 parent 9eb274c commit 981a9e8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/test_overloads.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import py, os, sys
from pytest import raises
from .support import setup_make
from .support import setup_make, IS_MAC_ARM

currpath = py.path.local(__file__).dirpath()
test_dct = str(currpath.join("overloadsDict"))
Expand Down Expand Up @@ -204,6 +204,9 @@ def test09_bool_int_overloads(self):
def test10_overload_and_exceptions(self):
"""Prioritize reporting C++ exceptions from callee"""

if IS_MAC_ARM:
py.test.skip("JIT exceptions not supported on Mac ARM")

import cppyy

cppyy.cppdef("""\
Expand Down

0 comments on commit 981a9e8

Please sign in to comment.