aadsm created this revision. aadsm added reviewers: clayborg, lanza, wallace. Herald added a project: LLDB. Herald added a subscriber: lldb-commits.
Not a big deal but might be if in the future we had another command starting with br. I found this because I had an lldbinit that added a breakpad command. Repository: rG LLVM Github Monorepo https://reviews.llvm.org/D70885 Files: lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/TestVSCode_launch.py Index: lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/TestVSCode_launch.py =================================================================== --- lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/TestVSCode_launch.py +++ lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/TestVSCode_launch.py @@ -350,8 +350,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 s -f main.c -l %d' % first_line, + 'breakpoint s -f main.c -l %d' % second_line, 'process launch --stop-at-entry' ]
Index: lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/TestVSCode_launch.py =================================================================== --- lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/TestVSCode_launch.py +++ lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/TestVSCode_launch.py @@ -350,8 +350,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 s -f main.c -l %d' % first_line, + 'breakpoint s -f main.c -l %d' % second_line, 'process launch --stop-at-entry' ]
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits