# HG changeset patch # User Christian Brabandt # Date 1523434507 -7200 # Node ID 544d9b63f9e99bfa53b56b969dabdb00e89ccea5 # Parent e52dc6a80a88e2ae116792888f16879e84eaa136 patch 8.0.1696: coverage statistics don't work commit https://github.com/vim/vim/commit/d60e0a1d202d49503ba95a40c165172c8f61db7a Author: Bram Moolenaar Date: Wed Apr 11 10:06:04 2018 +0200 patch 8.0.1696: coverage statistics don't work Problem: Coverate statistics don't work. Solution: Include the xxd directory. (Christian Brabandt) diff --git a/.travis.yml b/.travis.yml --- a/.travis.yml +++ b/.travis.yml @@ -108,7 +108,7 @@ script: - if [ -n "$err" ]; then exit 1; fi after_success: - - if [ "$COVERAGE" = "yes" ]; then ~/.local/bin/coveralls -b $SRCDIR -x .xs -e ${SRCDIR}/if_perl.c --encodings utf-8 latin-1 EUC-KR; fi + - if [ "$COVERAGE" = "yes" ]; then ~/.local/bin/coveralls -b $SRCDIR -x .xs -i $SRCDIR/xxd -e ${SRCDIR}/if_perl.c --encodings utf-8 latin-1 EUC-KR; fi - if [ "$COVERAGE" = "yes" ]; then cd $SRCDIR && bash <(curl -s https://codecov.io/bash) ; fi # vim:set sts=2 sw=2 tw=0 et: diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -763,6 +763,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1696, +/**/ 1695, /**/ 1694,