Some checks failed
SCC Test/pipeline/head There was a failure building this commit
68 lines
2.0 KiB
JSON
68 lines
2.0 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": "gdb",
|
|
"request": "launch",
|
|
"name": "quantum_keeper_mt",
|
|
"program": "${workspaceFolder}/build/Debug/tests/quantum_keeper_mt/quantum_keeper_mt"
|
|
},
|
|
{
|
|
"name": "cppdbg quantum_keeper_mt",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceRoot}/build/Debug/tests/quantum_keeper_mt/quantum_keeper_mt",
|
|
"args": [],
|
|
"stopAtEntry": false,
|
|
"cwd": "${fileDirname}",
|
|
"environment": [],
|
|
"externalConsole": false,
|
|
"MIMode": "gdb",
|
|
"setupCommands": [
|
|
{
|
|
"description": "Enable pretty-printing for gdb",
|
|
"text": "-enable-pretty-printing",
|
|
"ignoreFailures": true
|
|
},
|
|
{
|
|
"description": "Set Disassembly Flavor to Intel",
|
|
"text": "-gdb-set disassembly-flavor intel",
|
|
"ignoreFailures": true
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"name": "cci_param_restricted",
|
|
"type": "gdb",
|
|
"request": "launch",
|
|
"cwd": "${workspaceRoot}",
|
|
"program": "${workspaceRoot}/build/Debug/tests/cci_param_restricted/cci_param_restricted",
|
|
"preLaunchTask": "CMake: build"
|
|
},
|
|
{
|
|
"name": "dmi_access",
|
|
"type": "gdb",
|
|
"request": "launch",
|
|
"cwd": "${workspaceRoot}",
|
|
"program": "${workspaceRoot}/build/Debug/tests/memory_subsys/memory_subsys",
|
|
"preLaunchTask": "CMake: build"
|
|
},
|
|
{
|
|
"name": "cxs_tlm",
|
|
"type": "gdb",
|
|
"request": "launch",
|
|
"cwd": "${workspaceRoot}",
|
|
"program": "${workspaceRoot}/build/Debug/tests/cxs_tlm/cxs_tlm",
|
|
"arguments": "-n single-packet",
|
|
"preLaunchTask": "CMake: build",
|
|
"environment": {
|
|
"SCC_TEST_TRACE": "1",
|
|
"SCC_TEST_VERBOSE": "1"
|
|
},
|
|
"openGdbConsole": true
|
|
}
|
|
]
|
|
} |