[Lldb-commits] [lldb] [lldb] Disable TestTargetWatchAddress on Windows x86_64 (PR #144779)
via lldb-commits
lldb-commits at lists.llvm.org
Wed Jun 18 11:48:52 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb
Author: Dmitry Vasilyev (slydiman)
<details>
<summary>Changes</summary>
See #<!-- -->144777 for details.
---
Full diff: https://github.com/llvm/llvm-project/pull/144779.diff
1 Files Affected:
- (modified) lldb/test/API/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py (+10)
``````````diff
diff --git a/lldb/test/API/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py b/lldb/test/API/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py
index 37fa911b3714c..f1c7a60300df5 100644
--- a/lldb/test/API/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py
+++ b/lldb/test/API/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py
@@ -21,6 +21,11 @@ def setUp(self):
# This is for verifying that watch location works.
self.violating_func = "do_bad_thing_with_location"
+ @skipIf(
+ oslist=["windows"],
+ archs=["x86_64"],
+ bugnumber="github.com/llvm/llvm-project/issues/144777",
+ )
def test_watch_create_by_address(self):
"""Exercise SBTarget.WatchpointCreateByAddress() API to set a watchpoint."""
self.build()
@@ -88,6 +93,11 @@ def test_watch_create_by_address(self):
# This finishes our test.
+ @skipIf(
+ oslist=["windows"],
+ archs=["x86_64"],
+ bugnumber="github.com/llvm/llvm-project/issues/144777",
+ )
def test_watch_address(self):
"""Exercise SBTarget.WatchAddress() API to set a watchpoint.
Same as test_watch_create_by_address, but uses the simpler API.
``````````
</details>
https://github.com/llvm/llvm-project/pull/144779
More information about the lldb-commits
mailing list