Replies: 1 comment
-
|
Yes, this is by design. "Restart" is supposed to relaunch the same binary. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is it expected behavior? Can I change it?
launch.json
{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "type": "lldb", "request": "launch", "name": "Debug executable 'calc'", "cargo": { "args": [ "build", "--bin=calc", "--package=calc" ], "filter": { "name": "calc", "kind": "bin" }, }, "args": [], "cwd": "${workspaceFolder}" }, { "type": "lldb", "request": "launch", "name": "Debug unit tests in executable 'calc'", "cargo": { "args": [ "test", "--no-run", "--bin=calc", "--package=calc" ], "filter": { "name": "calc", "kind": "bin" } }, "args": [], "cwd": "${workspaceFolder}" } ] }Beta Was this translation helpful? Give feedback.
All reactions