]> granicus.if.org Git - check/commitdiff
Always emit unit test output for CMake on Travis-CI
authorBranden Archer <b.m.archer4@gmail.com>
Sun, 18 Dec 2016 17:04:36 +0000 (12:04 -0500)
committerGitHub <noreply@github.com>
Sun, 18 Dec 2016 17:04:36 +0000 (12:04 -0500)
Internally "make test" invokes ctest, and passing the -V flag will print the stdout from the unit tests.

.travis.yml

index cca91ddd27d39ab50838aee59b5752e2d5ca7818..cc73fc92c6fc270aef3026e37fc380507674781a 100644 (file)
@@ -51,5 +51,5 @@ script:
   - if [ $USE_CMAKE == 'NO' ] ; then pushd .. ; autoreconf -i ; popd; fi
   - if [ $USE_CMAKE == 'NO' ] ; then ../configure ; fi
   - make
-  - if [ $USE_CMAKE == 'YES' ] ; then CTEST_OUTPUT_ON_FAILURE=1 make test ; fi
+  - if [ $USE_CMAKE == 'YES' ] ; then ctest -V ; fi
   - if [ $USE_CMAKE == 'NO' ] ; then make check ; fi