diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-11-17 09:18:42 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2023-11-17 09:54:03 +0800 |
commit | 2371b9303d6b724c0e8c057239d00575c96d51f6 (patch) | |
tree | 8db79c44e3b28d49f545d84d5666884c6cf421f4 | |
parent | bbb363f4bcfb56f8e60afff5f6f65cfe9e860252 (diff) | |
download | rneovim-2371b9303d6b724c0e8c057239d00575c96d51f6.tar.gz rneovim-2371b9303d6b724c0e8c057239d00575c96d51f6.tar.bz2 rneovim-2371b9303d6b724c0e8c057239d00575c96d51f6.zip |
vim-patch:9.0.1860: CI: test_crash1() is flaky
Problem: CI: test_crash1() is flaky
Solution: Wait a bit longer
https://github.com/vim/vim/commit/f44cbe96fa44d10d6dd717e0a9f6ef0f104ee98a
Co-authored-by: Christian Brabandt <cb@256bit.org>
-rw-r--r-- | test/old/testdir/test_crash.vim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/old/testdir/test_crash.vim b/test/old/testdir/test_crash.vim index 8deb79702b..b997cc1d29 100644 --- a/test/old/testdir/test_crash.vim +++ b/test/old/testdir/test_crash.vim @@ -40,7 +40,7 @@ func Test_crash1() " clean up call delete('Xerr') " This test takes a bit longer - call TermWait(buf, 200) + call TermWait(buf, 500) let file = 'crash/poc_tagfunc.vim' let args = printf(cmn_args, vim, file) @@ -55,7 +55,6 @@ func Test_crash1() \ ' && echo "crash 6: [OK]" >> X_crash1_result.txt' .. "\<cr>") " clean up call delete('X') - " This test takes a bit longer call TermWait(buf, 200) " clean up |