[CMake] CTest results without submitting

2007-10-11 Thread Baptiste Derongs
Hello all, I am running a lot of tests with Ctest, and I would like to gather the results. However I do not want to send them to a Dart server (not really I do not want, but that is not the easiest way for me). So I made a CTestConfig.cmake with some weird commands that make Ctests -D unable to

Re: [CMake] CTest results without submitting

2007-10-11 Thread kent williams
If you only want to see whether tests succeed or fail, then you just need to go to the build directory and type make test Or you can run ctest directly ctest If you want to see the output of your tests, then run ctest -V If you only care about one test ctest -R testname_regexp i.e. give a