Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Initial Version and Version 1 of code/tools/ctest


Ignore:
Timestamp:
Mar 19, 2016, 2:58:09 PM (8 years ago)
Author:
landauf
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code/tools/ctest

    v1 v1  
     1= General =
     2
     3CTest is part of CMake and used to build and run tests in Orxonox.
     4
     5= Usage in Orxonox =
     6
     7Run tests:
     8{{{
     9make test
     10}}}
     11
     12Run tests and print output if some tests fail:
     13{{{
     14make test ARGS="--output-on-failure"
     15}}}
     16
     17Run only certain tests, e.g. "core_test"
     18{{{
     19make test ARGS="-R core_test"
     20}}}