From 72aaf37438921b8839d7cbe9d49ca2cd1402b3f8 Mon Sep 17 00:00:00 2001 From: Branden Archer Date: Sun, 18 Dec 2016 12:04:36 -0500 Subject: [PATCH] Always emit unit test output for CMake on Travis-CI Internally "make test" invokes ctest, and passing the -V flag will print the stdout from the unit tests. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index cca91dd..cc73fc9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 -- 2.40.0