malcontent/nss/.vscode/launch.json

31 lines
946 B
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": "Cargo integration_test",
"cargo": {
"args": [
"test",
"--no-run",
"--test=integration_test"
]
},
"args": [],
"cwd": "${workspaceFolder}",
"env": {
"RUST_BACKTRACE": "full",
"NSS_MALCONTENT_LOG": "trace",
},
"preRunCommands": [
"settings set target.process.follow-fork-mode child",
"settings set target.process.stop-on-exec false"
]
},
]
}