[Lldb-commits] [lldb] fa42589 - Enable verbose watch log channel to debug x86-64-debian bot
Jason Molenda via lldb-commits
lldb-commits at lists.llvm.org
Wed Jan 31 11:23:58 PST 2024
Author: Jason Molenda
Date: 2024-01-31T11:23:23-08:00
New Revision: fa42589fe31924b6176d7a92691c2f760b04ffd8
URL: https://github.com/llvm/llvm-project/commit/fa42589fe31924b6176d7a92691c2f760b04ffd8
DIFF: https://github.com/llvm/llvm-project/commit/fa42589fe31924b6176d7a92691c2f760b04ffd8.diff
LOG: Enable verbose watch log channel to debug x86-64-debian bot
Added:
Modified:
lldb/test/API/commands/watchpoints/watchpoint_count/TestWatchpointCount.py
Removed:
################################################################################
diff --git a/lldb/test/API/commands/watchpoints/watchpoint_count/TestWatchpointCount.py b/lldb/test/API/commands/watchpoints/watchpoint_count/TestWatchpointCount.py
index 890b0dac6b9ef..d0bcb2e440b50 100644
--- a/lldb/test/API/commands/watchpoints/watchpoint_count/TestWatchpointCount.py
+++ b/lldb/test/API/commands/watchpoints/watchpoint_count/TestWatchpointCount.py
@@ -21,6 +21,9 @@ def test_watchpoint_count(self):
first_var = frame.FindVariable("x1")
second_var = frame.FindVariable("x2")
+ self.runCmd("log enable -v lldb watch")
+ self.addTearDownHook(lambda: self.runCmd("log disable lldb watch"))
+
error = lldb.SBError()
first_watch = first_var.Watch(True, False, True, error)
if not error.Success():
More information about the lldb-commits
mailing list