diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2023-01-21 20:50:46 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-21 20:50:46 +0800 |
| commit | 0f52e2c849cbd923fc30b8bbef088b6f7642aeab (patch) | |
| tree | 42533e601b3b4d9a4d49c229ef6f6ae174f89716 /src/nvim/testdir/test_debugger.vim | |
| parent | fb805bb8b791b0266072b2415651cb54020d5098 (diff) | |
| download | rneovim-0f52e2c849cbd923fc30b8bbef088b6f7642aeab.tar.gz rneovim-0f52e2c849cbd923fc30b8bbef088b6f7642aeab.tar.bz2 rneovim-0f52e2c849cbd923fc30b8bbef088b6f7642aeab.zip | |
vim-patch:8.2.0382: some tests fail when run under valgrind (#21936)
Problem: Some tests fail when run under valgrind.
Solution: Increase timeouts.
https://github.com/vim/vim/commit/353c351bd22e4dac4c3ae9cd7731032348f248c4
Cherry-pick Test_pum_with_preview_win() from patch 8.2.0011.
Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'src/nvim/testdir/test_debugger.vim')
| -rw-r--r-- | src/nvim/testdir/test_debugger.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_debugger.vim b/src/nvim/testdir/test_debugger.vim index 4609b9d2f9..f5177c8fb2 100644 --- a/src/nvim/testdir/test_debugger.vim +++ b/src/nvim/testdir/test_debugger.vim @@ -36,7 +36,7 @@ endfunc " If the expected output argument is supplied, then check for it. func RunDbgCmd(buf, cmd, ...) call term_sendkeys(a:buf, a:cmd . "\r") - call term_wait(a:buf) + call term_wait(a:buf, 20) if a:0 != 0 let options = #{match: 'equal'} |