summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-08-08 22:02:35 +0200
committerBram Moolenaar <Bram@vim.org>2019-08-08 22:02:35 +0200
commita576f50662a7eb8cb14254ffba15fdd9114b86e1 (patch)
treef6721dd08eb1deea43510028e64c6bafe6a6ef31 /.travis.yml
parent39de6413c8b7bae882bed3dba636f6d52d793087 (diff)
patch 8.1.1830: Travis does not report error when tests failv8.1.1830
Problem: Travis does not report error when tests fail. Solution: Explicitly do "exit 1".
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index cff5c447a0..085d3c5b3c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -145,6 +145,8 @@ script:
- |
if do_test make ${SHADOWOPT} ${TEST}; then
echo -en "travis_fold:end:test\\r\\033[0K"
+ else
+ exit 1
fi