mirror of
https://github.com/vim/vim.git
synced 2025-09-28 04:24:06 -04:00
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 <cb@256bit.org>
This commit is contained in:
@@ -15,6 +15,7 @@ func Test_play_event()
|
|||||||
if has('win32')
|
if has('win32')
|
||||||
throw 'Skipped: Playing event with callback is not supported on Windows'
|
throw 'Skipped: Playing event with callback is not supported on Windows'
|
||||||
endif
|
endif
|
||||||
|
let g:result = 0
|
||||||
let g:playcallback_count = 0
|
let g:playcallback_count = 0
|
||||||
let g:id = 0
|
let g:id = 0
|
||||||
let event_name = 'bell'
|
let event_name = 'bell'
|
||||||
@@ -37,6 +38,7 @@ endfunc
|
|||||||
func Test_play_silent()
|
func Test_play_silent()
|
||||||
let fname = fnamemodify('silent.wav', '%p')
|
let fname = fnamemodify('silent.wav', '%p')
|
||||||
let g:playcallback_count = 0
|
let g:playcallback_count = 0
|
||||||
|
let g:result = -1
|
||||||
|
|
||||||
" play without callback
|
" play without callback
|
||||||
let id1 = sound_playfile(fname)
|
let id1 = sound_playfile(fname)
|
||||||
|
@@ -704,6 +704,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
271,
|
||||||
/**/
|
/**/
|
||||||
270,
|
270,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user