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 <jing...@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
 

_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to