We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c6b7e5 commit dabd12cCopy full SHA for dabd12c
.vscode/launch.json
@@ -550,6 +550,25 @@
550
"runToEntryPoint": "main",
551
"preLaunchTask": "Debug Open IoT SDK unit-tests",
552
"showDevDebugOutput": "parsed"
553
+ },
554
+ {
555
+ "name": "Zephyr native tests",
556
+ "type": "cppdbg",
557
+ "request": "launch",
558
+ "program": "${workspaceFolder}/out/nrf-native-sim-tests/nrfconnect/zephyr/zephyr.exe",
559
+ "args": ["-testargs"],
560
+ "stopAtEntry": false,
561
+ "cwd": "${workspaceFolder}/out/nrf-native-sim-tests/nrfconnect",
562
+ "environment": [],
563
+ "externalConsole": false,
564
+ "MIMode": "gdb",
565
+ "setupCommands": [
566
567
+ "description": "Enable pretty-printing for gdb",
568
+ "text": "-enable-pretty-printing",
569
+ "ignoreFailures": true
570
+ }
571
+ ]
572
}
573
],
574
"inputs": [
0 commit comments