forked from OSchip/llvm-project
[lldb] Skip TestStepOverWatchpoint on AS
Include macosx in the list of operating systems for which this is broken on arm64. rdar://34027183
This commit is contained in:
parent
8c31efeed6
commit
767496d19c
|
@ -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."""
|
||||
|
|
Loading…
Reference in New Issue