From 49f20b2f17c852f2161168e80d1822e757b7b674 Mon Sep 17 00:00:00 2001 From: Vipul Cariappa Date: Fri, 8 Nov 2024 13:57:57 +0000 Subject: [PATCH] [test] update tags fix compiler-research/CPyCppyy#65 --- test/test_datatypes.py | 2 +- test/test_doc_features.py | 2 +- test/test_stltypes.py | 6 +++--- test/test_templates.py | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/test/test_datatypes.py b/test/test_datatypes.py index c9a3bcdc..dc3ad742 100644 --- a/test/test_datatypes.py +++ b/test/test_datatypes.py @@ -193,7 +193,7 @@ def test01_instance_data_read_access(self): c.__destruct__() - @mark.xfail + # @mark.xfail def test02_instance_data_write_access(self): """Test write access to instance public data and verify values""" diff --git a/test/test_doc_features.py b/test/test_doc_features.py index 92ef477f..2c8282b3 100644 --- a/test/test_doc_features.py +++ b/test/test_doc_features.py @@ -1093,7 +1093,7 @@ def setup_class(cls): cppyy.gbl.talk_examples - @mark.xfail(run=not((IS_MAC_ARM or IS_MAC_X86) and not IS_CLANG_REPL)) + # @mark.xfail(run=not((IS_MAC_ARM or IS_MAC_X86) and not IS_CLANG_REPL)) def test_template_instantiation(self): """Run-time template instantiation example""" diff --git a/test/test_stltypes.py b/test/test_stltypes.py index 1d5d315d..d4cefc43 100644 --- a/test/test_stltypes.py +++ b/test/test_stltypes.py @@ -455,7 +455,7 @@ def test10_vector_std_distance(self): assert std.distance(v.begin(), v.end()) == v.size() assert std.distance[type(v).iterator](v.begin(), v.end()) == v.size() - @mark.xfail + # @mark.xfail def test11_vector_of_pair(self): """Use of std::vector""" @@ -673,7 +673,7 @@ def test18_array_interface(self): v = np.array(v, dtype=np.intc) assert ns.func(v) == sum(v) - @mark.xfail(run=not((IS_MAC_ARM or IS_MAC_X86) and not IS_CLANG_REPL)) + # @mark.xfail(run=not((IS_MAC_ARM or IS_MAC_X86) and not IS_CLANG_REPL)) def test19_vector_point3d(self): """Iteration over a vector of by-value objects""" @@ -1887,7 +1887,7 @@ def setup_class(cls): cls.stltypes = cppyy.load_reflection_info(cls.test_dct) cls.N = cppyy.gbl.N - @mark.xfail + # @mark.xfail def test01_pair_pack_unpack(self): """Pack/unpack pairs""" diff --git a/test/test_templates.py b/test/test_templates.py index 56225b80..cc8d7630 100644 --- a/test/test_templates.py +++ b/test/test_templates.py @@ -371,7 +371,7 @@ def test14_templated_return_type(self): assert rttest_make_tlist2(RTTest_SomeStruct1()) assert rttest_make_tlist2(RTTest_SomeNamespace.RTTest_SomeStruct2()) - @mark.xfail + # @mark.xfail def test15_rvalue_templates(self): """Use of a template with r-values; should accept builtin types""" @@ -1155,7 +1155,7 @@ def test33_using_template_argument(self): assert ns.testptr assert cppyy.gbl.std.vector[ns.testptr] - @mark.xfail(run=not((IS_MAC_ARM or IS_MAC_X86) and not IS_CLANG_REPL)) + # @mark.xfail(run=not((IS_MAC_ARM or IS_MAC_X86) and not IS_CLANG_REPL)) def test34_cstring_template_argument(self): """`const char*` use over std::string"""