patch 9.1.0271: CI sound test aborts with undefined variable
Commit:
https://github.com/vim/vim/commit/3c4d2e7a09134b72b129d26db374a8a8325c2779
Author: Christian Brabandt <[email protected]>
Date: Fri Apr 5 20:15:48 2024 +0200
patch 9.1.0271: CI sound test aborts with undefined variable
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 <[email protected]>
diff --git a/src/testdir/test_sound.vim b/src/testdir/test_sound.vim
index e97ac6198..401753e66 100644
--- a/src/testdir/test_sound.vim
+++ b/src/testdir/test_sound.vim
@@ -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)
diff --git a/src/version.c b/src/version.c
index 5a005bd5d..3b33ab176 100644
--- a/src/version.c
+++ b/src/version.c
@@ -704,6 +704,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 271,
/**/
270,
/**/
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/E1rsoKB-00AL9A-In%40256bit.org.