[Lldb-commits] [lldb] Fix TestEvents.py after: 4fdb8cb (PR #138211)
via lldb-commits
lldb-commits at lists.llvm.org
Thu May 1 15:48:32 PDT 2025
https://github.com/jimingham created https://github.com/llvm/llvm-project/pull/138211
I changed the option name from at-first-stop (-F) to at-initial-stop (-I) but missed one place in the testsuite.
>From 6780540d600677083c692cebd99d921684948465 Mon Sep 17 00:00:00 2001
From: Jim Ingham <jingham at apple.com>
Date: Thu, 1 May 2025 15:43:59 -0700
Subject: [PATCH] Fix TestEvents.py after: 4fdb8cb
I changed the option name from at-first-stop (-F) to at-initial-stop (-I) but
missed one place in the testsuite.
---
lldb/test/API/python_api/event/TestEvents.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lldb/test/API/python_api/event/TestEvents.py b/lldb/test/API/python_api/event/TestEvents.py
index 9b73a0e2e1e04..4a1b0d82c5c32 100644
--- a/lldb/test/API/python_api/event/TestEvents.py
+++ b/lldb/test/API/python_api/event/TestEvents.py
@@ -413,7 +413,7 @@ def test_shadow_listener(self):
# Add our stop hook here, don't report on the initial attach:
self.runCmd(
- f"target stop-hook add -P stop_hook.StopHook -k instance -v {self.instance} -F false"
+ f"target stop-hook add -P stop_hook.StopHook -k instance -v {self.instance} -I false"
)
self.stop_counter = 0
More information about the lldb-commits
mailing list