Skip to content

Commit

Permalink
[lldb] Skip TestStepOverWatchpoint on AS
Browse files Browse the repository at this point in the history
Include macosx in the list of operating systems for which this is broken
on arm64.

rdar://34027183
  • Loading branch information
JDevlieghere committed Aug 11, 2021
1 parent 8c31efe commit 767496d
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -21,7 +21,10 @@ class TestStepOverWatchpoint(TestBase):
bugnumber="llvm.org/pr26031")
# Read-write watchpoints not supported on SystemZ
@expectedFailureAll(archs=['s390x'])
@expectedFailureAll(oslist=["ios", "watchos", "tvos", "bridgeos"], bugnumber="<rdar://problem/34027183>") # watchpoint tests aren't working on arm64
@expectedFailureAll(
oslist=["ios", "watchos", "tvos", "bridgeos", "macosx"],
archs=['aarch64', 'arm'],
bugnumber="<rdar://problem/34027183>")
@add_test_categories(["basic_process"])
def test(self):
"""Test stepping over watchpoints."""
Expand Down

0 comments on commit 767496d

Please sign in to comment.