malcontent-dns-parental-con.../.vscode/launch.json

48 lines
1.5 KiB
JSON

// SPDX-FileCopyrightText: 2022 Matteo Settenvini <matteo.settenvini@montecristosoftware.eu>
// 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 integration test 'common'",
"cargo": {
"args": [
"test",
"--no-run",
"--test=common",
"--package=malcontent-nss"
],
"filter": {
"name": "common",
"kind": "test"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug integration test 'integration_test'",
"cargo": {
"args": [
"test",
"--no-run",
"--test=integration_test",
"--package=malcontent-nss"
],
"filter": {
"name": "integration_test",
"kind": "test"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}