[Lldb-commits] [PATCH] D70885: [lldb] Use explicit lldb commands on tests
António Afonso via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Sun Nov 1 15:54:20 PST 2020
aadsm updated this revision to Diff 302180.
aadsm added a comment.
Herald added a subscriber: JDevlieghere.
Herald added a reviewer: JDevlieghere.
Use set and rebase
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D70885/new/
https://reviews.llvm.org/D70885
Files:
lldb/test/API/tools/lldb-vscode/launch/TestVSCode_launch.py
Index: lldb/test/API/tools/lldb-vscode/launch/TestVSCode_launch.py
===================================================================
--- lldb/test/API/tools/lldb-vscode/launch/TestVSCode_launch.py
+++ 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'
]
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D70885.302180.patch
Type: text/x-patch
Size: 670 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20201101/d615cf3c/attachment.bin>
More information about the lldb-commits
mailing list