bneumann / CppUTest-Test-Adapter

A test adapter for Visual Studio Code for the C/C++ Unit Test framework CppUTest.
MIT License
16 stars 7 forks source link

Add user setting to configure test location fetch mode #29

Closed jgonzalezdr closed 2 years ago

jgonzalezdr commented 2 years ago

In windows test loading takes a lot of time because on the background the extension is trying to get the debug info from the test executables and the execution of external programs that it is invoking is failing. To avoid this a new configuration options is added to let the user disable test location fetch (which by default is disabled in windows).

Note: This PR is built on top of #28. To see the changes specific to this PR just peek on the last commit.

bneumann commented 2 years ago

No that I see the conflicts. We have a downward compatibility problem with the settings here.

jgonzalezdr commented 2 years ago

I've rebased on the latest master to solve the compatibility problem.