cmake project - unit test run and fixtures
Answered
Hello,
Is it possible in CLion to handle cmake/ctest fixture properties (FIXTURE_SETUP/FIXTURE_CLEANUP)?
I expecting that fixtures should run before tests with such properties enabled.
Maybe it is already supported or such feature request created in CLion youtrack?
Please sign in to leave a comment.
Hello!
CLion performs running of CTest tests through the CTest launcher itself. If you start a debug session for a CTest test, CLion will run the test itself under debug instead of launching the ctest child process. The
--rerun-failedoption is not used by CLion, and therefore all things related to this option are not supported.