Skip to content

Commit fbd30e5

Browse files
committed
[lldb] Fix test failure
Update the test to fix the failure.
1 parent bac4aa4 commit fbd30e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/test/API/commands/target/stop-hooks/TestStopHookScripted.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ def do_test_auto_continue(self, return_true):
8989
result = lldb.SBCommandReturnObject()
9090

9191
if return_true:
92-
command = "target stop-hook add -P stop_hook.stop_handler -k increment -v 5 -k return_false -v 1 -n step_out_of_me"
92+
command = "target stop-hook add -I 0 -P stop_hook.stop_handler -k increment -v 5 -k return_false -v 1 -n step_out_of_me"
9393
else:
94-
command = "target stop-hook add -G 1 -P stop_hook.stop_handler -k increment -v 5 -n step_out_of_me"
94+
command = "target stop-hook add -I 0 -G 1 -P stop_hook.stop_handler -k increment -v 5 -n step_out_of_me"
9595

9696
self.interp.HandleCommand(command, result)
9797
self.assertTrue(result.Succeeded(), "Set the target stop hook")

0 commit comments

Comments
 (0)