serves3/.vscode/launch.json

67 lines
1.9 KiB
JSON

// SPDX-FileCopyrightText: Public domain.
// SPDX-License-Identifier: CC0-1.0
{
// 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 'serves3'",
"cargo": {
"args": [
"build",
"--bin=serves3",
"--package=serves3"
],
"filter": {
"name": "serves3",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'serves3'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=serves3",
"--package=serves3"
],
"filter": {
"name": "serves3",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug integration test 'integration'",
"cargo": {
"args": [
"test",
"--no-run",
"--test=integration",
"--package=serves3"
],
"filter": {
"name": "integration",
"kind": "test"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}