Vlad Krylov
Vlad Krylov

Reputation: 2734

How to collect information about testing in cmake?

I have CMakeLists.txt with add_test macros. How to collect information about what results of test run with 'ctest' command?

Upvotes: 0

Views: 94

Answers (1)

Alexey
Alexey

Reputation: 948

You can find file Testing/Temporary/LastTest.log in your build directory. This file contains all information about tests.

Upvotes: 1

Related Questions