diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-08-07 23:07:07 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-08-07 23:07:07 +0200 |
commit | 8c5a278fc508da6dfe50e69b6ee734451aa4eafb (patch) | |
tree | 8a07c54e9ea8667a88f4aa2566e3c3c314727751 /src/testdir/test_search.vim | |
parent | b59e7357722d977830948572a395f0a175c7ded8 (diff) | |
download | vim-git-8c5a278fc508da6dfe50e69b6ee734451aa4eafb.tar.gz |
patch 8.1.1826: tests use hand coded feature and option checksv8.1.1826
Problem: Tests use hand coded feature and option checks.
Solution: Use the commands from check.vim in more tests.
Diffstat (limited to 'src/testdir/test_search.vim')
-rw-r--r-- | src/testdir/test_search.vim | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/testdir/test_search.vim b/src/testdir/test_search.vim index a356393b0..604f3c2ed 100644 --- a/src/testdir/test_search.vim +++ b/src/testdir/test_search.vim @@ -2,6 +2,7 @@ source shared.vim source screendump.vim +source check.vim func Test_search_cmdline() if !exists('+incsearch') @@ -575,12 +576,13 @@ endfunc func Test_search_cmdline8() " Highlighting is cleared in all windows " since hls applies to all windows - if !exists('+incsearch') || !has('terminal') || has('gui_running') || winwidth(0) < 30 - return - endif + CheckOption incsearch + CheckFeature terminal + CheckNotGui if has("win32") throw "Skipped: Bug with sending <ESC> to terminal window not fixed yet" endif + let h = winheight(0) if h < 3 return @@ -702,9 +704,10 @@ func Test_search_cmdline_incsearch_highlight() endfunc func Test_search_cmdline_incsearch_highlight_attr() - if !exists('+incsearch') || !has('terminal') || has('gui_running') - return - endif + CheckOption incsearch + CheckFeature terminal + CheckNotGui + let h = winheight(0) if h < 3 return |