seccomp-sandbox/.vscode/launch.json
2023-11-01 16:20:18 +08:00

49 lines
1.4 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 executable 'x2t-sandbox'",
"cargo": {
"args": [
"build",
"--bin=x2t-sandbox",
"--package=x2t-sandbox",
"--target=x86_64-unknown-linux-gnu"
],
"filter": {
"name": "x2t-sandbox",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}",
"env": {
"RUST_LOG": "DEBUG"
}
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'x2t-sandbox'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=x2t-sandbox",
"--package=x2t-sandbox"
],
"filter": {
"name": "x2t-sandbox",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}