extends cxs_tlm test to support tracing
Some checks failed
SCC Test/pipeline/head There was a failure building this commit
Some checks failed
SCC Test/pipeline/head There was a failure building this commit
This commit is contained in:
56
.vscode/launch.json
vendored
56
.vscode/launch.json
vendored
@@ -1,22 +1,38 @@
|
||||
{
|
||||
// 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": [{
|
||||
"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"
|
||||
}
|
||||
]
|
||||
// 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": [
|
||||
{
|
||||
"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
|
||||
}
|
||||
]
|
||||
}
|
12
.vscode/settings.json
vendored
12
.vscode/settings.json
vendored
@@ -11,8 +11,8 @@
|
||||
"--background-index",
|
||||
"--compile-commands-dir=${workspaceFolder}/build"
|
||||
],
|
||||
"cmake.buildDirectory" : "${workspaceRoot}/build/${buildType}",
|
||||
"cmake.configureArgs": ["-B", "${workspaceRoot}/build/${buildType}"],
|
||||
"cmake.buildDirectory": "${workspaceRoot}/build/${buildType}",
|
||||
//"cmake.configureArgs": ["-B", "${workspaceRoot}/build/${buildType}"],
|
||||
"cmake.configureOnOpen": false,
|
||||
"cmake.configureOnEdit": true,
|
||||
"cmake.autoSelectActiveFolder": true,
|
||||
@@ -21,8 +21,12 @@
|
||||
"cmake.copyCompileCommands": "${workspaceFolder}/build/compile_commands.json",
|
||||
"cmake.options.statusBarVisibility": "hidden",
|
||||
"cmake.options.advanced": {
|
||||
"configure": {"projectStatusVisibility": "visible"},
|
||||
"build": {"statusBarVisibility": "visible"}
|
||||
"configure": {
|
||||
"projectStatusVisibility": "visible"
|
||||
},
|
||||
"build": {
|
||||
"statusBarVisibility": "visible"
|
||||
}
|
||||
},
|
||||
"todo-tree.ripgrep.ripgrep": "/bin/rg",
|
||||
"files.watcherExclude": {
|
||||
|
Reference in New Issue
Block a user