[Lldb-commits] [lldb] [lldb] Disable TestTargetWatchAddress.py on Windows x86_64 (PR #142573)

via lldb-commits lldb-commits at lists.llvm.org
Tue Jun 3 03:31:04 PDT 2025


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb

@llvm/pr-subscribers-platform-windows

Author: Dmitry Vasilyev (slydiman)

<details>
<summary>Changes</summary>

See #<!-- -->142196 and https://github.com/llvm/llvm-zorg/pull/452 for details.

---
Full diff: https://github.com/llvm/llvm-project/pull/142573.diff


1 Files Affected:

- (modified) lldb/test/API/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py (+5) 


``````````diff
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()

``````````

</details>


https://github.com/llvm/llvm-project/pull/142573


More information about the lldb-commits mailing list