Reputation: 2734
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
Reputation: 948
You can find file Testing/Temporary/LastTest.log
in your build directory. This file contains all information about tests.
Upvotes: 1