diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-11-02 15:59:57 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-11-02 15:59:57 +0100 |
commit | f45938cc20ed6992e5215ffe41b73b528c78be9c (patch) | |
tree | a1e9ed1adaf82232c78d386a214d7066525b5fad /src | |
parent | ffd99f729bd806e09d9355ede9c17780b61057bf (diff) | |
download | vim-f45938cc20ed6992e5215ffe41b73b528c78be9c.zip |
patch 8.0.1243: no test for what 8.0.1227 fixes
Problem: No test for what 8.0.1227 fixes.
Solution: Add a test that triggers the problem. (Christian Brabandt)
Diffstat (limited to 'src')
-rw-r--r-- | src/testdir/test_normal.vim | 7 | ||||
-rw-r--r-- | src/testdir/test_search.vim | 15 | ||||
-rw-r--r-- | src/version.c | 2 |
3 files changed, 24 insertions, 0 deletions
diff --git a/src/testdir/test_normal.vim b/src/testdir/test_normal.vim index f6b1a43b8..90033c08e 100644 --- a/src/testdir/test_normal.vim +++ b/src/testdir/test_normal.vim @@ -1208,6 +1208,13 @@ func! Test_normal19_z_spell() call assert_match("Word 'goood' added to ./Xspellfile2.add", a) call assert_equal('goood', cnt[0]) + " Test for :spellgood! + let temp = execute(':spe!0/0') + call assert_match('Invalid region', temp) + let spellfile = matchstr(temp, 'Invalid region nr in \zs.*\ze line \d: 0') + call assert_equal(['# goood', '# goood/!', '#oood', '0/0'], readfile(spellfile)) + call delete(spellfile) + " clean up exe "lang" oldlang call delete("./Xspellfile.add") diff --git a/src/testdir/test_search.vim b/src/testdir/test_search.vim index b863fcbba..8d68f0c05 100644 --- a/src/testdir/test_search.vim +++ b/src/testdir/test_search.vim @@ -567,3 +567,18 @@ func Test_search_cmdline_incsearch_highlight_attr() bwipe! endfunc + +func Test_search_undefined_behaviour() + if !has("terminal") + return + endif + let h = winheight(0) + if h < 3 + return + endif + " did cause an undefined left shift + let g:buf = term_start([GetVimProg(), '--clean', '-e', '-s', '-c', 'call search(getline("."))', 'samples/test000'], {'term_rows': 3}) + call assert_equal([''], getline(1, '$')) + call term_sendkeys(g:buf, ":qa!\<cr>") + bwipe! +endfunc diff --git a/src/version.c b/src/version.c index 61e8ea2d0..83bfd7063 100644 --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1243, +/**/ 1242, /**/ 1241, |