[lldb] Disable TestReverseContinueBreakpoints.py and TestReverseContinueWatchpoints.py for Windows x86_64 (#142193)

See #138084 for details.
This commit is contained in:
Dmitry Vasilyev
2025-06-02 14:01:45 +04:00
committed by GitHub
parent fb86264f40
commit 68fd6f4eb8
2 changed files with 20 additions and 0 deletions

View File

@@ -63,10 +63,20 @@ class TestReverseContinueBreakpoints(ReverseTestBase):
self.assertEqual(threads_now, initial_threads)
@skipIfRemote
@skipIf(
oslist=["windows"],
archs=["x86_64"],
bugnumber="github.com/llvm/llvm-project/issues/138084",
)
def test_reverse_continue_skip_breakpoint(self):
self.reverse_continue_skip_breakpoint_internal(async_mode=False)
@skipIfRemote
@skipIf(
oslist=["windows"],
archs=["x86_64"],
bugnumber="github.com/llvm/llvm-project/issues/138084",
)
def test_reverse_continue_skip_breakpoint_async(self):
self.reverse_continue_skip_breakpoint_internal(async_mode=True)

View File

@@ -64,12 +64,22 @@ class TestReverseContinueWatchpoints(ReverseTestBase):
@skipIfRemote
# Watchpoints don't work in single-step mode
@skipIf(macos_version=["<", "15.0"], archs=["arm64"])
@skipIf(
oslist=["windows"],
archs=["x86_64"],
bugnumber="github.com/llvm/llvm-project/issues/138084",
)
def test_reverse_continue_skip_watchpoint(self):
self.reverse_continue_skip_watchpoint_internal(async_mode=False)
@skipIfRemote
# Watchpoints don't work in single-step mode
@skipIf(macos_version=["<", "15.0"], archs=["arm64"])
@skipIf(
oslist=["windows"],
archs=["x86_64"],
bugnumber="github.com/llvm/llvm-project/issues/138084",
)
def test_reverse_continue_skip_watchpoint_async(self):
self.reverse_continue_skip_watchpoint_internal(async_mode=True)