From 833ccc3d84ee225a1761b3c11079109dfc8a98d7 Mon Sep 17 00:00:00 2001 From: Bruno Van de Velde Date: Sat, 15 Aug 2015 02:36:44 +0200 Subject: [PATCH] Travis should fail when the tests fail --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index dbc16c33..8329a673 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,7 +34,7 @@ before_script: script: - cd build_gcc-5.1 - export CXX="g++-5" - - cmake -DCMAKE_BUILD_TYPE=Debug -DTGUI_BUILD_EXAMPLES=TRUE -DTGUI_BUILD_TESTS=TRUE .. && make && (cd tests/ && ./tests ; cd ..) + - cmake -DCMAKE_BUILD_TYPE=Debug -DTGUI_BUILD_EXAMPLES=TRUE -DTGUI_BUILD_TESTS=TRUE .. && make && cd tests/ && ./tests && cd .. - cd ../build_gcc-4.7 - export CXX="g++-4.7" - cmake .. && make