]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 9.1.0271: CI sound test aborts with undefined variable v9.1.0271
authorChristian Brabandt <cb@256bit.org>
Fri, 5 Apr 2024 18:15:48 +0000 (20:15 +0200)
committerChristian Brabandt <cb@256bit.org>
Fri, 5 Apr 2024 18:16:46 +0000 (20:16 +0200)
Problem:  CI sound test aborts with undefined variable
Solution: initialize g:result in test_sound.vim

closes: #14424

Signed-off-by:
Signed-off-by: Christian Brabandt <cb@256bit.org>
src/testdir/test_sound.vim
src/version.c

index e97ac6198b23cfb650574e8f82ac6a316681722c..401753e6606bb56e466c5e7dc058f08c13fe6628 100644 (file)
@@ -15,6 +15,7 @@ func Test_play_event()
   if has('win32')
     throw 'Skipped: Playing event with callback is not supported on Windows'
   endif
+  let g:result = 0
   let g:playcallback_count = 0
   let g:id = 0
   let event_name = 'bell'
@@ -37,6 +38,7 @@ endfunc
 func Test_play_silent()
   let fname = fnamemodify('silent.wav', '%p')
   let g:playcallback_count = 0
+  let g:result = -1
 
   " play without callback
   let id1 = sound_playfile(fname)
index 5a005bd5d1451866972fcfc0e47a95981b0361a9..3b33ab176f607fa8e7291e57c3064bc8d813e9ad 100644 (file)
@@ -704,6 +704,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    271,
 /**/
     270,
 /**/