# HG changeset patch # User Bram Moolenaar # Date 1565295305 -7200 # Node ID 1a554fc58d59012ec919568acbf279dcf2e388ed # Parent 7fdabc8f95e1dc4fd99f29ad955bffaa1c5dc545 patch 8.1.1830: Travis does not report error when tests fail commit https://github.com/vim/vim/commit/a576f50662a7eb8cb14254ffba15fdd9114b86e1 Author: Bram Moolenaar Date: Thu Aug 8 22:02:35 2019 +0200 patch 8.1.1830: Travis does not report error when tests fail Problem: Travis does not report error when tests fail. Solution: Explicitly do "exit 1". diff --git a/.travis.yml b/.travis.yml --- 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 diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1830, +/**/ 1829, /**/ 1828,