aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api
diff options
context:
space:
mode:
authorDmitry Vasilyev <dvassiliev@accesssoftek.com>2025-06-03 20:18:16 +0400
committerGitHub <noreply@github.com>2025-06-03 20:18:16 +0400
commita90145e0282fb9eef0ad9ff61f505aff4e30c01d (patch)
tree295d63b396d29b59b4d7dfd0abfce80befdf1130 /lldb/test/API/python_api
parent34d8275e4fcd619226e2872ea0ee07f8a1634ff7 (diff)
downloadllvm-a90145e0282fb9eef0ad9ff61f505aff4e30c01d.zip
llvm-a90145e0282fb9eef0ad9ff61f505aff4e30c01d.tar.gz
llvm-a90145e0282fb9eef0ad9ff61f505aff4e30c01d.tar.bz2
[lldb] Disable TestTargetWatchAddress.py on Windows x86_64 (#142573)
See #142196 and https://github.com/llvm/llvm-zorg/pull/452 for details.
Diffstat (limited to 'lldb/test/API/python_api')
-rw-r--r--lldb/test/API/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py5
1 files changed, 5 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 7a0e42a..37fa911 100644
--- a/lldb/test/API/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py
+++ b/lldb/test/API/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py
@@ -160,6 +160,11 @@ class TargetWatchpointCreateByAddressPITestCase(TestBase):
# No size constraint on MIPS for watches
@skipIf(archs=["mips", "mipsel", "mips64", "mips64el"])
@skipIf(archs=["s390x"]) # Likewise on SystemZ
+ @skipIf(
+ oslist=["windows"],
+ archs=["x86_64"],
+ bugnumber="github.com/llvm/llvm-project/issues/142196",
+ )
def test_watch_address_with_invalid_watch_size(self):
"""Exercise SBTarget.WatchpointCreateByAddress() API but pass an invalid watch_size."""
self.build()