Travis should fail when the tests fail

0.8
Bruno Van de Velde 2015-08-15 02:36:44 +02:00
parent c9c6db8b9f
commit 833ccc3d84
1 changed files with 1 additions and 1 deletions

View File

@ -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