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

Make it possible to specify objdump path #33

Closed spoorcc closed 4 months ago

spoorcc commented 2 years ago

Currently the extension uses objdump from PATH to find the location of a test when double clicking.

I would like to use a specific objdump. Would it be possible to add a new setting cpputestExplorer.objDumpPath to specify this? Or is there a way I'm overlooking?

(Thanks for your work 👍 )

bneumann commented 2 years ago

Hi, that is certainly possible. Thanks for the issue :)

bneumann commented 4 months ago

I added a new option to specify the objdump path/variable. cpputestTestAdapter.objDumpExecutable Maybe this is still relevant. Anyways I added it in the 1.3.1 release

spoorcc commented 4 months ago

Thanks!!