From ad915e382bf924fb844bdf2b9124d53cc5d5c088 Mon Sep 17 00:00:00 2001 From: Vipul Cariappa Date: Mon, 4 Nov 2024 06:39:19 +0000 Subject: [PATCH] [test] update tags fixed by compiler-research/cppyy-backend#111 --- test/test_doc_features.py | 3 +-- test/test_overloads.py | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/test/test_doc_features.py b/test/test_doc_features.py index 35c9bca6..92ef477f 100644 --- a/test/test_doc_features.py +++ b/test/test_doc_features.py @@ -262,7 +262,7 @@ def test_enums(self): pass - @mark.xfail + @mark.xfail(run=not IS_MAC, reason="Seg Fault") def test_functions(self): import cppyy @@ -741,7 +741,6 @@ class TestADVERTISED: def setup_class(cls): import cppyy - @mark.xfail def test01_reduction_of_overloads(self): """Reduce available overloads to 1""" diff --git a/test/test_overloads.py b/test/test_overloads.py index ebdb293f..6d0d244f 100644 --- a/test/test_overloads.py +++ b/test/test_overloads.py @@ -38,7 +38,6 @@ def test01_class_based_overloads(self): assert d_overload().get_int(ns_a_overload.a_overload()) == 88 assert d_overload().get_int(ns_b_overload.a_overload()) == -33 - @mark.xfail def test02_class_based_overloads_explicit_resolution(self): """Test explicitly resolved function overloads"""