diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-08-08 22:02:35 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-08-08 22:02:35 +0200 |
commit | a576f50662a7eb8cb14254ffba15fdd9114b86e1 (patch) | |
tree | f6721dd08eb1deea43510028e64c6bafe6a6ef31 /.travis.yml | |
parent | 39de6413c8b7bae882bed3dba636f6d52d793087 (diff) | |
download | vim-git-a576f50662a7eb8cb14254ffba15fdd9114b86e1.tar.gz |
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.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index cff5c447a..085d3c5b3 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 |