Skip to content

Commit

Permalink
[test] update tags
Browse files Browse the repository at this point in the history
  • Loading branch information
Vipul-Cariappa committed Nov 8, 2024
1 parent a0efea0 commit 49f20b2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion test/test_datatypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"""

Expand Down
2 changes: 1 addition & 1 deletion test/test_doc_features.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"""

Expand Down
6 changes: 3 additions & 3 deletions test/test_stltypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -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<std::pair>"""

Expand Down Expand Up @@ -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"""

Expand Down Expand Up @@ -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"""

Expand Down
4 changes: 2 additions & 2 deletions test/test_templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"""

Expand Down Expand Up @@ -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"""

Expand Down

0 comments on commit 49f20b2

Please sign in to comment.