[Lldb-commits] [PATCH] D70885: [lldb] Use explicit lldb commands on tests
Greg Clayton via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Apr 30 18:35:22 PDT 2020
clayborg added inline comments.
================
Comment at: lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/TestVSCode_launch.py:353-354
'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'
----------------
we might as well spell this out completely as "breakpoint set" just in case and nothing can currently replace or alias existing commands.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D70885/new/
https://reviews.llvm.org/D70885
More information about the lldb-commits
mailing list