[Lldb-commits] [lldb] 767496d - [lldb] Skip TestStepOverWatchpoint on AS

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Wed Aug 11 13:43:17 PDT 2021


Author: Jonas Devlieghere
Date: 2021-08-11T13:43:12-07:00
New Revision: 767496d19cb9a1fbba57ff08095faa161998ee36

URL: https://github.com/llvm/llvm-project/commit/767496d19cb9a1fbba57ff08095faa161998ee36
DIFF: https://github.com/llvm/llvm-project/commit/767496d19cb9a1fbba57ff08095faa161998ee36.diff

LOG: [lldb] Skip TestStepOverWatchpoint on AS

Include macosx in the list of operating systems for which this is broken
on arm64.

rdar://34027183

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/commands/watchpoints/step_over_watchpoint/TestStepOverWatchpoint.py b/lldb/test/API/commands/watchpoints/step_over_watchpoint/TestStepOverWatchpoint.py
index c602dafb2bebd..d5240d5db68ad 100644
--- a/lldb/test/API/commands/watchpoints/step_over_watchpoint/TestStepOverWatchpoint.py
+++ b/lldb/test/API/commands/watchpoints/step_over_watchpoint/TestStepOverWatchpoint.py
@@ -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."""


        


More information about the lldb-commits mailing list