[CMake] CTest results without submitting
kent williams
nkwmailinglists at gmail.com
Thu Oct 11 09:35:19 EDT 2007
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 regular expression matching all or part of the names of
tests you wish to run.
If you want a local dashboard, I don't know the answer to your
question. It would require faking the submission to a server, then
running the dashboard roll-up locally.
You might better ask this question on the DART mailing list.
On 10/11/07, Baptiste Derongs <baptiste.derongs at etu.utc.fr> wrote:
> 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 find where to submit, and next I just get .xml
> files. That works, but I was wondering if there is no better solution,
> like a --create-xml-results option (I am quite sure this one doesn't
> exist...).
>
> Regards
>
> Baptiste
> _______________________________________________
> CMake mailing list
> CMake at cmake.org
> http://www.cmake.org/mailman/listinfo/cmake
>
More information about the CMake
mailing list