Problem: Setting local instead of global flag.
Solution: Prepend "g:" to "test_is_flaky".
let testfile = 'failed/' . a:filename . '.dump'
" Starting a terminal to make a screendump is always considered flaky.
- let test_is_flaky = 1
+ let g:test_is_flaky = 1
" Redraw to execute the code that updates the screen. Otherwise we get the
" text and attributes only from the internal buffer.
endtry
" Starting a terminal to run Vim is always considered flaky.
- let test_is_flaky = 1
+ let g:test_is_flaky = 1
return buf
endfunc
" Stop a Vim running in terminal buffer "buf".
func StopVimInTerminal(buf)
" Using a terminal to run Vim is always considered flaky.
- let test_is_flaky = 1
+ let g:test_is_flaky = 1
call assert_equal("running", term_getstatus(a:buf))
CheckFeature terminal
CheckNotGui
" Starting a terminal to run Vim is always considered flaky.
- let test_is_flaky = 1
+ let g:test_is_flaky = 1
" Prepare file for TextChanged event.
call writefile([''], 'Xchanged.txt')
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 402,
/**/
401,
/**/