Skip to content

Commit a90145e

Browse files
authored
[lldb] Disable TestTargetWatchAddress.py on Windows x86_64 (#142573)
See #142196 and llvm/llvm-zorg#452 for details.
1 parent 34d8275 commit a90145e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,11 @@ def test_watch_address(self):
160160
# No size constraint on MIPS for watches
161161
@skipIf(archs=["mips", "mipsel", "mips64", "mips64el"])
162162
@skipIf(archs=["s390x"]) # Likewise on SystemZ
163+
@skipIf(
164+
oslist=["windows"],
165+
archs=["x86_64"],
166+
bugnumber="github.com/llvm/llvm-project/issues/142196",
167+
)
163168
def test_watch_address_with_invalid_watch_size(self):
164169
"""Exercise SBTarget.WatchpointCreateByAddress() API but pass an invalid watch_size."""
165170
self.build()

0 commit comments

Comments
 (0)