Ivan-lis
88609274ba
All checks were successful
PR Check / on-push-commit-check (push) Successful in 16m4s
33 lines
No EOL
1.1 KiB
JSON
33 lines
No EOL
1.1 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": "lldb",
|
|
"request": "launch",
|
|
"name": "Debug: connect",
|
|
"program": "${workspaceFolder}/build/examples/output/connect",
|
|
"args": [
|
|
"--log_level=0"
|
|
// --gtest_filter=POSTIVE_PATTERNS[-NEGATIVE_PATTERNS]
|
|
],
|
|
"cwd": "${workspaceFolder}",
|
|
"preLaunchTask": "GCC: Build"
|
|
},
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Debug: tests",
|
|
"program": "${workspaceFolder}/build/larra_xmpp_tests",
|
|
"args": [
|
|
"--log_level=0"
|
|
// --gtest_filter=POSTIVE_PATTERNS[-NEGATIVE_PATTERNS]
|
|
// "--gtest_filter=Roster*"
|
|
],
|
|
"cwd": "${workspaceFolder}",
|
|
"preLaunchTask": "GCC: Build"
|
|
}
|
|
]
|
|
} |