Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -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.
Expand Down
Loading