Skip to content

Commit 68fd6f4

Browse files
authored
[lldb] Disable TestReverseContinueBreakpoints.py and TestReverseContinueWatchpoints.py for Windows x86_64 (#142193)
See #138084 for details.
1 parent fb86264 commit 68fd6f4

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

lldb/test/API/functionalities/reverse-execution/TestReverseContinueBreakpoints.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,20 @@ def reverse_continue_breakpoint_internal(self, async_mode):
6363
self.assertEqual(threads_now, initial_threads)
6464

6565
@skipIfRemote
66+
@skipIf(
67+
oslist=["windows"],
68+
archs=["x86_64"],
69+
bugnumber="github.com/llvm/llvm-project/issues/138084",
70+
)
6671
def test_reverse_continue_skip_breakpoint(self):
6772
self.reverse_continue_skip_breakpoint_internal(async_mode=False)
6873

6974
@skipIfRemote
75+
@skipIf(
76+
oslist=["windows"],
77+
archs=["x86_64"],
78+
bugnumber="github.com/llvm/llvm-project/issues/138084",
79+
)
7080
def test_reverse_continue_skip_breakpoint_async(self):
7181
self.reverse_continue_skip_breakpoint_internal(async_mode=True)
7282

lldb/test/API/functionalities/reverse-execution/TestReverseContinueWatchpoints.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,22 @@ def reverse_continue_watchpoint_internal(self, async_mode):
6464
@skipIfRemote
6565
# Watchpoints don't work in single-step mode
6666
@skipIf(macos_version=["<", "15.0"], archs=["arm64"])
67+
@skipIf(
68+
oslist=["windows"],
69+
archs=["x86_64"],
70+
bugnumber="github.com/llvm/llvm-project/issues/138084",
71+
)
6772
def test_reverse_continue_skip_watchpoint(self):
6873
self.reverse_continue_skip_watchpoint_internal(async_mode=False)
6974

7075
@skipIfRemote
7176
# Watchpoints don't work in single-step mode
7277
@skipIf(macos_version=["<", "15.0"], archs=["arm64"])
78+
@skipIf(
79+
oslist=["windows"],
80+
archs=["x86_64"],
81+
bugnumber="github.com/llvm/llvm-project/issues/138084",
82+
)
7383
def test_reverse_continue_skip_watchpoint_async(self):
7484
self.reverse_continue_skip_watchpoint_internal(async_mode=True)
7585

0 commit comments

Comments
 (0)