seccomp-sandbox/.vscode/launch.json

51 lines
1.5 KiB
JSON
Raw Normal View History

2023-11-01 16:17:51 +08:00
{
// 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": [
"/usr/bin/ls"
],
2023-11-01 16:17:51 +08:00
"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}"
}
]
}