You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
postsack/.vscode/launch.json

159 lines
4.5 KiB
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 unit tests in library 'ps-core'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=ps-core"
],
"filter": {
"name": "ps-core",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'ps-database'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=ps-database"
],
"filter": {
"name": "ps-database",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'ps-importer'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=ps-importer"
],
"filter": {
"name": "ps-importer",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'ps-gui'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=ps-gui"
],
"filter": {
"name": "ps-gui",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'postsack'",
"cargo": {
"args": [
"build",
"--bin=postsack",
"--package=postsack"
],
"filter": {
"name": "postsack",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'postsack'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=postsack",
"--package=postsack"
],
"filter": {
"name": "postsack",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug integration test 'test_importer'",
"cargo": {
"args": [
"test",
"--no-run",
"--test=test_importer",
"--package=postsack"
],
"filter": {
"name": "test_importer",
"kind": "test"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug integration test 'test_engine'",
"cargo": {
"args": [
"test",
"--no-run",
"--test=test_engine",
"--package=postsack"
],
"filter": {
"name": "test_engine",
"kind": "test"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}