Skip to content

Commit

Permalink
Merge pull request #857 from PowerGridModel/feature/add-launch-file
Browse files Browse the repository at this point in the history
Add launch file to run one validation test case
  • Loading branch information
TonyXiang8787 authored Dec 17, 2024
2 parents 8dede6b + f124a51 commit ba97784
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
// 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": "Debug validation test",
"type": "cppdbg",
"request": "launch",
"program": "${command:cmake.buildDirectory}/bin/power_grid_model_validation_tests",
"args": [
"--test-case=Validation test single",
"--subcase=power_flow/1os2msr-sym-newton_raphson"
],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"linux": {
"MIMode": "gdb",
},
"osx": {
"MIMode": "lldb"
},
}
]
}
3 changes: 3 additions & 0 deletions .vscode/launch.json.license
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
SPDX-FileCopyrightText: Contributors to the Power Grid Model project <[email protected]>

SPDX-License-Identifier: MPL-2.0

0 comments on commit ba97784

Please sign in to comment.