[Lldb-commits] [lldb] a90145e - [lldb] Disable TestTargetWatchAddress.py on Windows x86_64 (#142573)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Jun 3 09:18:19 PDT 2025
Author: Dmitry Vasilyev
Date: 2025-06-03T20:18:16+04:00
New Revision: a90145e0282fb9eef0ad9ff61f505aff4e30c01d
URL: https://github.com/llvm/llvm-project/commit/a90145e0282fb9eef0ad9ff61f505aff4e30c01d
DIFF: https://github.com/llvm/llvm-project/commit/a90145e0282fb9eef0ad9ff61f505aff4e30c01d.diff
LOG: [lldb] Disable TestTargetWatchAddress.py on Windows x86_64 (#142573)
See #142196 and https://github.com/llvm/llvm-zorg/pull/452 for details.
Added:
Modified:
lldb/test/API/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py
Removed:
################################################################################
diff --git a/lldb/test/API/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py b/lldb/test/API/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py
index 7a0e42a4fc278..37fa911b3714c 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 @@ def test_watch_address(self):
# 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()
More information about the lldb-commits
mailing list