diff options
| author | jimingham <jingham@apple.com> | 2025-05-01 16:01:50 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-01 16:01:50 -0700 |
| commit | 471fe9c68948d339016d0c4aa66c116ff31e0516 (patch) | |
| tree | 75b035b01ab3e119ac22480d9c78d50d12e779f3 /lldb/test/API/python_api | |
| parent | 1a44f38d2af8724e9819f03d4b76a50615217a8d (diff) | |
| download | llvm-471fe9c68948d339016d0c4aa66c116ff31e0516.zip llvm-471fe9c68948d339016d0c4aa66c116ff31e0516.tar.gz llvm-471fe9c68948d339016d0c4aa66c116ff31e0516.tar.bz2 | |
Fix TestEvents.py after: 4fdb8cb (#138211)
I changed the option name from at-first-stop (-F) to at-initial-stop
(-I) but missed one place in the testsuite.
Diffstat (limited to 'lldb/test/API/python_api')
| -rw-r--r-- | lldb/test/API/python_api/event/TestEvents.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/API/python_api/event/TestEvents.py b/lldb/test/API/python_api/event/TestEvents.py index 9b73a0e..4a1b0d8 100644 --- a/lldb/test/API/python_api/event/TestEvents.py +++ b/lldb/test/API/python_api/event/TestEvents.py @@ -413,7 +413,7 @@ class EventAPITestCase(TestBase): # 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 |
