diff --git a/lldb/test/API/tools/lldb-vscode/launch/TestVSCode_launch.py b/lldb/test/API/tools/lldb-vscode/launch/TestVSCode_launch.py --- a/lldb/test/API/tools/lldb-vscode/launch/TestVSCode_launch.py +++ b/lldb/test/API/tools/lldb-vscode/launch/TestVSCode_launch.py @@ -382,8 +382,8 @@ # breakpoints get hit launchCommands = [ 'target create "%s"' % (program), - 'br s -f main.c -l %d' % first_line, - 'br s -f main.c -l %d' % second_line, + 'breakpoint set -f main.c -l %d' % first_line, + 'breakpoint set -f main.c -l %d' % second_line, 'process launch --stop-at-entry' ]