diff options
author | Kevin Rocard <kevin.rocard@intel.com> | 2015-03-05 19:11:06 +0100 |
---|---|---|
committer | Eric Laurent <elaurent@google.com> | 2015-04-24 13:32:47 -0700 |
commit | 9cd5890b76c3326b0fd60b475bc34dc1db4c8297 (patch) | |
tree | fdb52071ae63104c6f79a7f0682ed2b3dd42ff0c | |
parent | 327b24a779740517ac1d7dee50eb4f0bb880ba02 (diff) | |
download | external_parameter-framework-9cd5890b76c3326b0fd60b475bc34dc1db4c8297.zip external_parameter-framework-9cd5890b76c3326b0fd60b475bc34dc1db4c8297.tar.gz external_parameter-framework-9cd5890b76c3326b0fd60b475bc34dc1db4c8297.tar.bz2 |
Print test output if the test fails
ctest by default put all logs in a file and never display it even if a test fails.
Add the relevant option to output on failure.
Signed-off-by: Kevin Rocard <kevin.rocard@intel.com>
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index e59ea79..2b057aa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,7 @@ install: # how to build script: - cmake . && make -j && sudo make install - - make test + - CTEST_OUTPUT_ON_FAILURE=1 make test - cd skeleton-subsystem - cmake . && make && sudo make install |