# HG changeset patch # User Bram Moolenaar # Date 1560083405 -7200 # Node ID b54d62497f9488ab025ee74ca5789f2737e869b3 # Parent bf7a8a466977bf9b83cdde0b2fe7b3a392b99306 patch 8.1.1503: sound test fails on Travis commit https://github.com/vim/vim/commit/ffa60dda0a9a443c6751dbcff9d9e7ee07106f0c Author: Bram Moolenaar Date: Sun Jun 9 13:56:27 2019 +0200 patch 8.1.1503: sound test fails on Travis Problem: Sound test fails on Travis. Solution: Set AUDIODEV to "null". diff --git a/.travis.yml b/.travis.yml --- a/.travis.yml +++ b/.travis.yml @@ -128,6 +128,8 @@ before_script: if [[ "${TRAVIS_OS_NAME}" = "linux" ]]; then export DISPLAY=:99.0 sh -e /etc/init.d/xvfb start && sleep 3 + # pretend to play sounds + export AUDIODEV=null fi script: diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -778,6 +778,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1503, +/**/ 1502, /**/ 1501,