aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api
diff options
context:
space:
mode:
authorDmitry Vasilyev <dvassiliev@accesssoftek.com>2025-06-19 11:12:34 +0400
committerGitHub <noreply@github.com>2025-06-19 11:12:34 +0400
commit3e795c60c73e990fbbf254715cb47855c32bcfae (patch)
tree0640d2302931c0e3dc4f6ac1da9204b375ba4e5e /lldb/test/API/python_api
parent408e55098d7d8f7064d7a288b5e3fe6fdbbc2ad4 (diff)
downloadllvm-3e795c60c73e990fbbf254715cb47855c32bcfae.zip
llvm-3e795c60c73e990fbbf254715cb47855c32bcfae.tar.gz
llvm-3e795c60c73e990fbbf254715cb47855c32bcfae.tar.bz2
[lldb] Disable TestTargetWatchAddress on Windows x86_64 (#144779)
See #144777 for details.
Diffstat (limited to 'lldb/test/API/python_api')
-rw-r--r--lldb/test/API/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/lldb/test/API/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py b/lldb/test/API/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py
index 37fa911..f1c7a60 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 @@ class TargetWatchpointCreateByAddressPITestCase(TestBase):
# 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 @@ class TargetWatchpointCreateByAddressPITestCase(TestBase):
# 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.