Skip to content

Commit 3e795c6

Browse files
authored
[lldb] Disable TestTargetWatchAddress on Windows x86_64 (#144779)
See #144777 for details.
1 parent 408e550 commit 3e795c6

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

lldb/test/API/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ def setUp(self):
2121
# This is for verifying that watch location works.
2222
self.violating_func = "do_bad_thing_with_location"
2323

24+
@skipIf(
25+
oslist=["windows"],
26+
archs=["x86_64"],
27+
bugnumber="github.com/llvm/llvm-project/issues/144777",
28+
)
2429
def test_watch_create_by_address(self):
2530
"""Exercise SBTarget.WatchpointCreateByAddress() API to set a watchpoint."""
2631
self.build()
@@ -88,6 +93,11 @@ def test_watch_create_by_address(self):
8893

8994
# This finishes our test.
9095

96+
@skipIf(
97+
oslist=["windows"],
98+
archs=["x86_64"],
99+
bugnumber="github.com/llvm/llvm-project/issues/144777",
100+
)
91101
def test_watch_address(self):
92102
"""Exercise SBTarget.WatchAddress() API to set a watchpoint.
93103
Same as test_watch_create_by_address, but uses the simpler API.

0 commit comments

Comments
 (0)