
7 changed files with 234 additions and 8 deletions
@ -0,0 +1,159 @@ |
|||
{ |
|||
// 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 unit tests in library 'coresight'", |
|||
"cargo": { |
|||
"args": [ |
|||
"test", |
|||
"--no-run", |
|||
"--lib", |
|||
"--package=coresight" |
|||
], |
|||
"filter": { |
|||
"name": "coresight", |
|||
"kind": "lib" |
|||
} |
|||
}, |
|||
"args": [], |
|||
"cwd": "${workspaceFolder}" |
|||
}, |
|||
{ |
|||
"type": "lldb", |
|||
"request": "launch", |
|||
"name": "Debug unit tests in library 'probe'", |
|||
"cargo": { |
|||
"args": [ |
|||
"test", |
|||
"--no-run", |
|||
"--lib", |
|||
"--package=probe" |
|||
], |
|||
"filter": { |
|||
"name": "probe", |
|||
"kind": "lib" |
|||
} |
|||
}, |
|||
"args": [], |
|||
"cwd": "${workspaceFolder}" |
|||
}, |
|||
{ |
|||
"type": "lldb", |
|||
"request": "launch", |
|||
"name": "Debug unit tests in library 'memory'", |
|||
"cargo": { |
|||
"args": [ |
|||
"test", |
|||
"--no-run", |
|||
"--lib", |
|||
"--package=memory" |
|||
], |
|||
"filter": { |
|||
"name": "memory", |
|||
"kind": "lib" |
|||
} |
|||
}, |
|||
"args": [], |
|||
"cwd": "${workspaceFolder}" |
|||
}, |
|||
{ |
|||
"type": "lldb", |
|||
"request": "launch", |
|||
"name": "Debug unit tests in library 'stlink'", |
|||
"cargo": { |
|||
"args": [ |
|||
"test", |
|||
"--no-run", |
|||
"--lib", |
|||
"--package=stlink" |
|||
], |
|||
"filter": { |
|||
"name": "stlink", |
|||
"kind": "lib" |
|||
} |
|||
}, |
|||
"args": [], |
|||
"cwd": "${workspaceFolder}" |
|||
}, |
|||
{ |
|||
"type": "lldb", |
|||
"request": "launch", |
|||
"name": "Debug unit tests in library 'daplink'", |
|||
"cargo": { |
|||
"args": [ |
|||
"test", |
|||
"--no-run", |
|||
"--lib", |
|||
"--package=daplink" |
|||
], |
|||
"filter": { |
|||
"name": "daplink", |
|||
"kind": "lib" |
|||
} |
|||
}, |
|||
"args": [], |
|||
"cwd": "${workspaceFolder}" |
|||
}, |
|||
{ |
|||
"type": "lldb", |
|||
"request": "launch", |
|||
"name": "Debug unit tests in library 'probe-rs-debug'", |
|||
"cargo": { |
|||
"args": [ |
|||
"test", |
|||
"--no-run", |
|||
"--lib", |
|||
"--package=probe-rs-debug" |
|||
], |
|||
"filter": { |
|||
"name": "probe-rs-debug", |
|||
"kind": "lib" |
|||
} |
|||
}, |
|||
"args": [], |
|||
"cwd": "${workspaceFolder}" |
|||
}, |
|||
{ |
|||
"type": "lldb", |
|||
"request": "launch", |
|||
"name": "Debug executable 'cli'", |
|||
"cargo": { |
|||
"args": [ |
|||
"build", |
|||
"--bin=cli", |
|||
"--package=cli" |
|||
], |
|||
"filter": { |
|||
"name": "cli", |
|||
"kind": "bin" |
|||
} |
|||
}, |
|||
"args": [], |
|||
"cwd": "${workspaceFolder}" |
|||
}, |
|||
{ |
|||
"type": "lldb", |
|||
"request": "launch", |
|||
"name": "Debug unit tests in executable 'cli'", |
|||
"cargo": { |
|||
"args": [ |
|||
"test", |
|||
"--no-run", |
|||
"--bin=cli", |
|||
"--package=cli" |
|||
], |
|||
"filter": { |
|||
"name": "cli", |
|||
"kind": "bin" |
|||
} |
|||
}, |
|||
"args": [], |
|||
"cwd": "${workspaceFolder}" |
|||
} |
|||
] |
|||
} |
Loading…
Reference in new issue