We run our unit tests from CMake on Windows, the program we use as debug target comes from the cmake plugin (as recommended in their documentation):
"program": "${command:cmake.launchTargetPath}",
Your (very usefull!) plugin, checks for a debug configuration and on windows it will look for the .exe extension, but this is missing.
This makes it not possible to debug from the Test Explorer view.
|
const executionExtension: boolean = isWin ? config.program.endsWith(".exe") : true; |
We run our unit tests from CMake on Windows, the program we use as debug target comes from the cmake plugin (as recommended in their documentation):
Your (very usefull!) plugin, checks for a debug configuration and on windows it will look for the
.exeextension, but this is missing.This makes it not possible to debug from the Test Explorer view.
CppUTest-Test-Adapter/src/Infrastructure/VscodeSettingsProvider.ts
Line 56 in d2ebbd0