From 19303c26493d60c2de711bbbfda4fd329364dca2 Mon Sep 17 00:00:00 2001 From: Vipul Cariappa Date: Thu, 28 Nov 2024 19:08:38 +0530 Subject: [PATCH] [test] update tags fixed by compiler-research/cppyy-backend#115 & compiler-research/CppInterOp#351 --- test/test_regression.py | 1 - test/test_stltypes.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/test/test_regression.py b/test/test_regression.py index e5e2c34..912fe8c 100644 --- a/test/test_regression.py +++ b/test/test_regression.py @@ -895,7 +895,6 @@ def test30_uint64_t(self): assert ns.TTest(True).fT == True assert type(ns.TTest(True).fT) == bool - @mark.xfail def test31_enum_in_dir(self): """Failed to pick up enum data""" diff --git a/test/test_stltypes.py b/test/test_stltypes.py index 425c751..ea04ab6 100644 --- a/test/test_stltypes.py +++ b/test/test_stltypes.py @@ -1830,7 +1830,7 @@ def test01_tuple_creation_and_access(self): # TODO: should be easy enough to add iterators over std::tuple? - @mark.xfail + @mark.xfail(condition=IS_MAC, reason="fails on OSX") def test02_tuple_size(self): """Usage of tuple_size helper class"""