summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_autocmd.vim
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-04-15 21:28:02 +0100
committerBram Moolenaar <Bram@vim.org>2023-04-15 21:28:02 +0100
commit657b31fa3bda2089fef18c30fc706abe5d57e865 (patch)
treea68cf58655847be818365eb06954fa85055ed78e /src/testdir/test_autocmd.vim
parent732d69e1918b28ad0fe16eb9bc5a776c7958122b (diff)
patch 9.0.1456: shortmess test depends on order of test executionv9.0.1456
Problem: Shortmess test depends on order of test execution. Solution: Clear messages. (closes #12264)
Diffstat (limited to 'src/testdir/test_autocmd.vim')
-rw-r--r--src/testdir/test_autocmd.vim4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/testdir/test_autocmd.vim b/src/testdir/test_autocmd.vim
index f2a763add5..176d2823d6 100644
--- a/src/testdir/test_autocmd.vim
+++ b/src/testdir/test_autocmd.vim
@@ -54,6 +54,9 @@ if has('timers')
endfunc
func Test_cursorhold_insert()
+ " depends on timing
+ let g:test_is_flaky = 1
+
" Need to move the cursor.
call feedkeys("ggG", "xt")
@@ -4215,6 +4218,7 @@ func SetupVimTest_shm()
let g:bwe = []
let g:brp = []
set shortmess+=F
+ messages clear
let dirname='XVimTestSHM'
call mkdir(dirname, 'R')