Changes between Initial Version and Version 1 of code/tools/ctest
- Timestamp:
- Mar 19, 2016, 2:58:09 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
code/tools/ctest
v1 v1 1 = General = 2 3 CTest is part of CMake and used to build and run tests in Orxonox. 4 5 = Usage in Orxonox = 6 7 Run tests: 8 {{{ 9 make test 10 }}} 11 12 Run tests and print output if some tests fail: 13 {{{ 14 make test ARGS="--output-on-failure" 15 }}} 16 17 Run only certain tests, e.g. "core_test" 18 {{{ 19 make test ARGS="-R core_test" 20 }}}