ct-rs/.vscode/launch.json

46 lines
1.3 KiB
JSON
Raw Normal View History

2024-10-25 17:26:55 -06: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 unit tests in library 'ct'",
2024-10-25 17:26:55 -06:00
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
2024-10-25 17:26:55 -06:00
"--package=ct"
],
"filter": {
"name": "ct",
"kind": "lib"
2024-10-25 17:26:55 -06:00
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug integration test 'log_entry_parsing'",
2024-10-25 17:26:55 -06:00
"cargo": {
"args": [
"test",
"--no-run",
"--test=log_entry_parsing",
2024-10-25 17:26:55 -06:00
"--package=ct"
],
"filter": {
"name": "log_entry_parsing",
"kind": "test"
2024-10-25 17:26:55 -06:00
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}