[Lldb-commits] [lldb] [lldb] Disable TestTargetWatchAddress on Windows x86_64 (PR #144779)

Dmitry Vasilyev via lldb-commits lldb-commits at lists.llvm.org
Wed Jun 18 11:48:32 PDT 2025


https://github.com/slydiman created https://github.com/llvm/llvm-project/pull/144779

See #144777 for details.

>From 5bdc9d7ae0ff06e29d9ac25f1c0b459edc87719e Mon Sep 17 00:00:00 2001
From: Dmitry Vasilyev <dvassiliev at accesssoftek.com>
Date: Wed, 18 Jun 2025 22:46:09 +0400
Subject: [PATCH] [lldb] Disable TestTargetWatchAddress on Windows x86_64

See #144777 for details.
---
 .../watchpoint/watchlocation/TestTargetWatchAddress.py | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/lldb/test/API/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py b/lldb/test/API/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py
index 37fa911b3714c..f1c7a60300df5 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 @@ def setUp(self):
         # 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 @@ def test_watch_create_by_address(self):
 
         # 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.



More information about the lldb-commits mailing list