[Lldb-commits] [lldb] [lldb] Disable TestTargetWatchAddress.py on Windows x86_64 (PR #142573)
Dmitry Vasilyev via lldb-commits
lldb-commits at lists.llvm.org
Tue Jun 3 03:30:39 PDT 2025
https://github.com/slydiman created https://github.com/llvm/llvm-project/pull/142573
See #142196 and https://github.com/llvm/llvm-zorg/pull/452 for details.
>From 7f770486b80d0f927f5e4ad16f5e31a771b2ad0a Mon Sep 17 00:00:00 2001
From: Dmitry Vasilyev <dvassiliev at accesssoftek.com>
Date: Tue, 3 Jun 2025 14:28:58 +0400
Subject: [PATCH] [lldb] Disable TestTargetWatchAddress.py on Windows x86_64
See #142196 and https://github.com/llvm/llvm-zorg/pull/452 for details.
---
.../watchpoint/watchlocation/TestTargetWatchAddress.py | 5 +++++
1 file changed, 5 insertions(+)
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