[Lldb-commits] [lldb] cea8257 - [lldb] Skip TestConsecutiveWatchpoints.py if out of tree debugserver
Jason Molenda via lldb-commits
lldb-commits at lists.llvm.org
Wed May 21 17:38:42 PDT 2025
Author: Jason Molenda
Date: 2025-05-21T17:38:35-07:00
New Revision: cea82573bb39230f6ddf47f8ee5a83f85c255025
URL: https://github.com/llvm/llvm-project/commit/cea82573bb39230f6ddf47f8ee5a83f85c255025
DIFF: https://github.com/llvm/llvm-project/commit/cea82573bb39230f6ddf47f8ee5a83f85c255025.diff
LOG: [lldb] Skip TestConsecutiveWatchpoints.py if out of tree debugserver
The GreenDragon CI bots are currently passing because the installed
Xcode is a bit old, and doesn't have the watchpoint handling
bug that was fixed April with this test being added.
But on other CI running newer Xcode debugservers, this test will
fail. Skip this test if we're using an out of tree debugserver.
Added:
Modified:
lldb/test/API/functionalities/watchpoint/consecutive-watchpoints/TestConsecutiveWatchpoints.py
Removed:
################################################################################
diff --git a/lldb/test/API/functionalities/watchpoint/consecutive-watchpoints/TestConsecutiveWatchpoints.py b/lldb/test/API/functionalities/watchpoint/consecutive-watchpoints/TestConsecutiveWatchpoints.py
index bb73acc8fc35f..a07b297a067a3 100644
--- a/lldb/test/API/functionalities/watchpoint/consecutive-watchpoints/TestConsecutiveWatchpoints.py
+++ b/lldb/test/API/functionalities/watchpoint/consecutive-watchpoints/TestConsecutiveWatchpoints.py
@@ -22,6 +22,7 @@ def continue_and_report_stop_reason(self, process, iter_str):
# debugserver only gained the ability to watch larger regions
# with this patch.
+ @skipIfOutOfTreeDebugserver
def test_consecutive_watchpoints(self):
"""Test watchpoint that covers a large region of memory."""
self.build()
More information about the lldb-commits
mailing list