Skip to content

Commit

Permalink
Add debug with full speed test
Browse files Browse the repository at this point in the history
  • Loading branch information
giggio committed Nov 28, 2024
1 parent 88e31d8 commit ec86ee0
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{
"type": "lldb",
"request": "launch",
"name": "Debug trackspeedtest run",
"name": "Debug trackspeedtest run (simulated)",
"cargo": {
"args": [
"build",
Expand All @@ -22,6 +22,27 @@
],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug trackspeedtest run (with real speed test)",
"cargo": {
"args": [
"build",
"--bin=trackspeedtest",
"--package=trackspeedtest"
],
"filter": {
"name": "trackspeedtest",
"kind": "bin"
}
},
"args": [
"run",
"-v"
],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
Expand Down

0 comments on commit ec86ee0

Please sign in to comment.