Skip to content

Commit 767496d

Browse files
committed
[lldb] Skip TestStepOverWatchpoint on AS
Include macosx in the list of operating systems for which this is broken on arm64. rdar://34027183
1 parent 8c31efe commit 767496d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lldb/test/API/commands/watchpoints/step_over_watchpoint/TestStepOverWatchpoint.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ class TestStepOverWatchpoint(TestBase):
2121
bugnumber="llvm.org/pr26031")
2222
# Read-write watchpoints not supported on SystemZ
2323
@expectedFailureAll(archs=['s390x'])
24-
@expectedFailureAll(oslist=["ios", "watchos", "tvos", "bridgeos"], bugnumber="<rdar://problem/34027183>") # watchpoint tests aren't working on arm64
24+
@expectedFailureAll(
25+
oslist=["ios", "watchos", "tvos", "bridgeos", "macosx"],
26+
archs=['aarch64', 'arm'],
27+
bugnumber="<rdar://problem/34027183>")
2528
@add_test_categories(["basic_process"])
2629
def test(self):
2730
"""Test stepping over watchpoints."""

0 commit comments

Comments
 (0)