How to collect information about testing in cmake?
I have CMakeLists.txt with add_test macros. How to collect informa开发者_开发问答tion about what results of test run with 'ctest' command?
You can find file Testing/Temporary/LastTest.log
in your build directory. This file contains all information about tests.
精彩评论