Skip to content

Commit cc4af03

Browse files
committed
Revert "Add extra printing to TestWatchpointCount.py to debug CI fail"
This reverts commit dad50fe.
1 parent 46643e0 commit cc4af03

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

lldb/test/API/commands/watchpoints/watchpoint_count/TestWatchpointCount.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,6 @@ def test_watchpoint_count(self):
2929
second_watch = second_var.Watch(True, False, True, error)
3030
if not error.Success():
3131
self.fail("Failed to make watchpoint for x2: %s" % (error.GetCString()))
32-
# LWP_TODO: Adding temporary prints to debug a test
33-
# failure on the x86-64 Debian bot.
34-
self.runCmd("p &x1")
35-
self.runCmd("p &x2")
36-
self.runCmd("watchpoint list")
37-
3832
process.Continue()
3933

4034
stop_reason = thread.GetStopReason()
@@ -45,11 +39,6 @@ def test_watchpoint_count(self):
4539
self.assertEqual(stop_reason_descr, "watchpoint 1")
4640

4741
process.Continue()
48-
# LWP_TODO: Adding temporary prints to debug a test
49-
# failure on the x86-64 Debian bot.
50-
self.runCmd("frame select 0")
51-
self.runCmd("disassemble")
52-
5342
stop_reason = thread.GetStopReason()
5443
self.assertStopReason(
5544
stop_reason, lldb.eStopReasonWatchpoint, "watchpoint for x2 not hit"

0 commit comments

Comments
 (0)