vim-patch:9.1.0262: Test for TextChanged is flaky with ASAN (#28180)

Problem:  Test for TextChanged is flaky with ASAN.
Solution: Wait for the file to be non-empty.
          (zeertzjq)

closes: vim/vim#14404

4a65391ca2
This commit is contained in:
zeertzjq 2024-04-05 07:24:25 +08:00 committed by GitHub
parent e016f5bee6
commit dc69c475a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -3912,7 +3912,7 @@ func Test_Changed_ChangedI()
au TextChangedI <buffer> :call TextChangedAutocmd('I')
nnoremap <CR> o<Esc>
call writefile([''], 'XTextChangedI3')
autocmd SafeState * ++once call writefile([''], 'XTextChangedI3')
END
call writefile(before, 'Xinit', 'D')
@ -3921,6 +3921,7 @@ func Test_Changed_ChangedI()
\ {'term_rows': 10})
call assert_equal('running', term_getstatus(buf))
call WaitForAssert({-> assert_true(filereadable('XTextChangedI3'))})
call WaitForAssert({-> assert_equal([''], readfile('XTextChangedI3'))})
" TextChanged should trigger if a mapping enters and leaves Insert mode.
call term_sendkeys(buf, "\<CR>")