Carl Dehlin
Carl Dehlin
@hcw70 Can you please provide a minimal reproducible example?
Thanks @hcw70 and DEUTA Werke GmbH for using doctest ;) I simplified your example. `CMakeLists.txt` ```cmake cmake_minimum_required(VERSION 3.22.1) project(doctest-859) include(CTest) include(FetchContent) fetchcontent_declare(doctest GIT_REPOSITORY https://github.com/doctest/doctest.git GIT_TAG v2.4.11 GIT_SHALLOW On) FetchContent_MakeAvailable(doctest) fetchcontent_getproperties(doctest...
Nope. I am not a maintainer of this repo, I have just helped out with triaging. I doubt poking will speed things up.
There are some easy workarounds. Consider this code ```cpp #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN #include TEST_SUITE("suite-A") { TEST_CASE("test-A") {} TEST_CASE("test-B") {} } TEST_SUITE("suite-B") { TEST_CASE("test-A") {} TEST_CASE("test-B") {} } ``` compiled into a...
Can you elaborate on what "throw breakpoints" means? I adjusted your example according to your text and merged into one file to make it easier to talk about. I believe...
This requires instrumenting the code. Which compiler are you using? If you use GCC then you can add --coverage flag to the compiler. If you want a human readable coverage...
@jiridanek Would it be possible for coverity to scan the macro expanded header? Its hard to see what it actually complains about
Thanks for the PR. Can you please undo the removal of the current documentation of `External_ProjectAdd`? Ideally there should be only additions and no removals, put the new docs under...
To begin with, I apologize for not seeing the duplicate PR. I just started work on reviewing old issues for this project and started out in the wrong order. Let's...
I say we close this since there are workarounds. Easiest is to change working directory before executing the tests, it's trivial to wrap the test exe with script that does...