]> granicus.if.org Git - vim/commitdiff
patch 8.0.1243: no test for what 8.0.1227 fixes v8.0.1243
authorBram Moolenaar <Bram@vim.org>
Thu, 2 Nov 2017 14:59:57 +0000 (15:59 +0100)
committerBram Moolenaar <Bram@vim.org>
Thu, 2 Nov 2017 14:59:57 +0000 (15:59 +0100)
Problem:    No test for what 8.0.1227 fixes.
Solution:   Add a test that triggers the problem. (Christian Brabandt)

src/testdir/test_normal.vim
src/testdir/test_search.vim
src/version.c

index f6b1a43b812e01a1bc2acdb93b7ea60794f1b753..90033c08ec6d20645a3764d339f87e780eaf21b0 100644 (file)
@@ -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")
index b863fcbba363fb1d20cf12d1f8eefc710b8a6699..8d68f0c058e01b161cf82242c600275e2be8a2f0 100644 (file)
@@ -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
index 61e8ea2d0f4b71efa7097f339a74a2dae17d3044..83bfd7063b71a33e095b1905fd22f90becab235a 100644 (file)
@@ -761,6 +761,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1243,
 /**/
     1242,
 /**/