Skip to content

Commit

Permalink
Mark tests crashing on ClangRepl as xfail
Browse files Browse the repository at this point in the history
  • Loading branch information
sudo-panda authored and vgvassilev committed Jun 26, 2023
1 parent eb1fed0 commit e4c993c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions test/test_fragile.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ def test07_unnamed_enum(self):

g = fragile.G()

@mark.xfail(run=not IS_CLANG_REPL, reason="Crashes on ClangRepl")
def test08_unhandled_scoped_datamember(self):
"""Test that an unhandled scoped data member does not cause infinite recursion"""

Expand Down
2 changes: 1 addition & 1 deletion test/test_stltypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -997,7 +997,7 @@ def EQ(result, init, methodname, *args):
assert s.rfind('c') < 0
assert s.rfind('c') == s.npos

@mark.xfail
@mark.xfail(run=not IS_CLANG_DEBUG, reason="Crashes with ClangRepl with 'toString not implemented'")
def test10_string_in_repr_and_str_bytes(self):
"""Special cases for __str__/__repr__"""

Expand Down

0 comments on commit e4c993c

Please sign in to comment.