We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba97784 commit ece3b41Copy full SHA for ece3b41
.vscode/launch.json
@@ -5,7 +5,7 @@
5
"version": "0.2.0",
6
"configurations": [
7
{
8
- "name": "Debug validation test",
+ "name": "Debug validation test [Unix]",
9
"type": "cppdbg",
10
"request": "launch",
11
"program": "${command:cmake.buildDirectory}/bin/power_grid_model_validation_tests",
@@ -23,6 +23,20 @@
23
"osx": {
24
"MIMode": "lldb"
25
},
26
+ },
27
+ {
28
+ "name": "Debug validation test [Windows]",
29
+ "type": "cppvsdbg",
30
+ "request": "launch",
31
+ "program": "${command:cmake.buildDirectory}/bin/power_grid_model_validation_tests.exe",
32
+ "args": [
33
+ "--test-case=Validation test single",
34
+ "--subcase=power_flow/1os2msr-sym-newton_raphson"
35
+ ],
36
+ "stopAtEntry": false,
37
+ "cwd": "${fileDirname}",
38
+ "environment": [],
39
+ "externalConsole": false,
40
}
41
]
42
0 commit comments