summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_autocmd.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-03-15 14:19:26 +0100
committerBram Moolenaar <Bram@vim.org>2020-03-15 14:19:26 +0100
commit353c351bd22e4dac4c3ae9cd7731032348f248c4 (patch)
tree01f887d396021e8242699c44d8950e0e171dee09 /src/testdir/test_autocmd.vim
parent2573af3519ad062ddad647b97e32090f106f2ac1 (diff)
patch 8.2.0382: some tests fail when run under valgrindv8.2.0382
Problem: Some tests fail when run under valgrind. Solution: Increase timeouts.
Diffstat (limited to 'src/testdir/test_autocmd.vim')
-rw-r--r--src/testdir/test_autocmd.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test_autocmd.vim b/src/testdir/test_autocmd.vim
index 8a1d5d835b..7e3035ae42 100644
--- a/src/testdir/test_autocmd.vim
+++ b/src/testdir/test_autocmd.vim
@@ -2283,7 +2283,7 @@ func Test_autocmd_CmdWinEnter()
call term_sendkeys(buf, "q:")
call term_wait(buf)
call term_sendkeys(buf, ":echo b:dummy_var\<cr>")
- call WaitForAssert({-> assert_match('^This is a dummy', term_getline(buf, 6))}, 1000)
+ call WaitForAssert({-> assert_match('^This is a dummy', term_getline(buf, 6))}, 2000)
call term_sendkeys(buf, ":echo &buftype\<cr>")
call WaitForAssert({-> assert_notmatch('^nofile', term_getline(buf, 6))}, 1000)
call term_sendkeys(buf, ":echo winnr\<cr>")