# HG changeset patch # User Bram Moolenaar # Date 1560087905 -7200 # Node ID b99b33f8475b116e361168cf8fdc0e9d077c33fe # Parent bc44dd816fc0da529ea41a8cb364db8f93c67e91 patch 8.1.1508: sound keeps failing on Travis commit https://github.com/vim/vim/commit/541faf7a73448bbed9e8d129f2001fb34e39b7b1 Author: Bram Moolenaar Date: Sun Jun 9 15:35:41 2019 +0200 patch 8.1.1508: sound keeps failing on Travis Problem: Sound keeps failing on Travis. Solution: Throw a skipped exception in the test. diff --git a/src/testdir/test_sound.vim b/src/testdir/test_sound.vim --- a/src/testdir/test_sound.vim +++ b/src/testdir/test_sound.vim @@ -27,7 +27,9 @@ func Test_play_silent() " play without callback let id1 = sound_playfile(fname) - call assert_true(id1 > 0) + if id1 == 0 + throw 'Skipped: playing a sound is not working' + endif " play until the end let id2 = sound_playfile(fname, 'PlayCallback') 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 */ /**/ + 1508, +/**/ 1507, /**/ 1506,