summaryrefslogtreecommitdiff
path: root/src/testdir/test_match.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-05-31 21:28:02 +0200
committerBram Moolenaar <Bram@vim.org>2020-05-31 21:28:02 +0200
commit494e9069cb32620f7688a7cb128a3feff827639e (patch)
treed78ea251927cc0f6c725b29b8559f3dc1f759078 /src/testdir/test_match.vim
parente35a52aee718c881bdfa69a47a1068df6ab6c60a (diff)
downloadvim-git-494e9069cb32620f7688a7cb128a3feff827639e.tar.gz
patch 8.2.0866: not enough tests for buffer writingv8.2.0866
Problem: Not enough tests for buffer writing. Solution: Add more tests. Use CheckRunVimInTerminal in more places. (Yegappan Lakshmanan, closes #6167)
Diffstat (limited to 'src/testdir/test_match.vim')
-rw-r--r--src/testdir/test_match.vim8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/testdir/test_match.vim b/src/testdir/test_match.vim
index fca646d6a..dafe3ceb6 100644
--- a/src/testdir/test_match.vim
+++ b/src/testdir/test_match.vim
@@ -313,9 +313,7 @@ func Test_matchdelete_error()
endfunc
func Test_matchclear_other_window()
- if !CanRunVimInTerminal()
- throw 'Skipped: cannot make screendumps'
- endif
+ CheckRunVimInTerminal
let buf = OtherWindowCommon()
call term_sendkeys(buf, ":call clearmatches(winid)\<CR>")
call VerifyScreenDump(buf, 'Test_matchclear_1', {})
@@ -325,9 +323,7 @@ func Test_matchclear_other_window()
endfunc
func Test_matchadd_other_window()
- if !CanRunVimInTerminal()
- throw 'Skipped: cannot make screendumps'
- endif
+ CheckRunVimInTerminal
let buf = OtherWindowCommon()
call term_sendkeys(buf, ":call matchadd('Search', 'Hello', 1, -1, #{window: winid})\<CR>")
call term_sendkeys(buf, ":\<CR>")