File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
lldb/test/API/commands/target/stop-hooks Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -66,11 +66,15 @@ def test_stop_hooks_scripted_wrong_func(self):
66
66
67
67
def test_stop_hooks_scripted_right_lines (self ):
68
68
"""Test that a scripted stop hook fires when there is a function match"""
69
- self .stop_hooks_scripted (5 , "-I 0 -f main.c -l 1 -e %d" % (self .main_start_line ))
69
+ self .stop_hooks_scripted (
70
+ 5 , "-I 0 -f main.c -l 1 -e %d" % (self .main_start_line )
71
+ )
70
72
71
73
def test_stop_hooks_scripted_wrong_lines (self ):
72
74
"""Test that a scripted stop hook doesn't fire when the function does not match"""
73
- self .stop_hooks_scripted (0 , "-I 0 -f main.c -l %d -e 100" % (self .main_start_line ))
75
+ self .stop_hooks_scripted (
76
+ 0 , "-I 0 -f main.c -l %d -e 100" % (self .main_start_line )
77
+ )
74
78
75
79
def test_stop_hooks_scripted_auto_continue (self ):
76
80
"""Test that the --auto-continue flag works"""
You can’t perform that action at this time.
0 commit comments