]> granicus.if.org Git - vim/commitdiff
patch 9.0.0663: tests check for +cmdwin feature which is always present v9.0.0663
authorzeertzjq <zeertzjq@outlook.com>
Wed, 5 Oct 2022 10:24:46 +0000 (11:24 +0100)
committerBram Moolenaar <Bram@vim.org>
Wed, 5 Oct 2022 10:24:46 +0000 (11:24 +0100)
Problem:    Tests check for +cmdwin feature which is always present.
Solution:   Remove the checks. (closes #11287)

src/testdir/test_arglist.vim
src/testdir/test_autocmd.vim
src/testdir/test_cmdwin.vim
src/testdir/test_tabpage.vim
src/testdir/test_termcodes.vim
src/testdir/test_window_cmd.vim
src/version.c

index 298514ef09a42a7e73e1841abaf4e859427a5f5a..1bc556fa916ca0d1614bbafd3a32d31b4667b472 100644 (file)
@@ -587,8 +587,6 @@ endfunc
 
 " Test for ":all" not working when in the cmdline window
 func Test_all_not_allowed_from_cmdwin()
-  CheckFeature cmdwin
-
   au BufEnter * all
   next x
   " Use try/catch here, somehow assert_fails() doesn't work on MS-Windows
index 70f0f553a2268b866691ba3bcb4a167c76025796..3698fd57ee4b15555956ac99afe0736c9f9e0d5f 100644 (file)
@@ -2778,7 +2778,6 @@ endfunc
 
 func Test_autocmd_CmdWinEnter()
   CheckRunVimInTerminal
-  CheckFeature cmdwin
 
   let lines =<< trim END
     augroup vimHints | au! | augroup END
@@ -3418,19 +3417,17 @@ func Test_mode_changes()
     call assert_equal(5, g:nori_to_any)
   endif
 
-  if has('cmdwin')
-    let g:n_to_c = 0
-    au ModeChanged n:c let g:n_to_c += 1
-    let g:c_to_n = 0
-    au ModeChanged c:n let g:c_to_n += 1
-    let g:mode_seq += ['c', 'n', 'c', 'n']
-    call feedkeys("q:\<C-C>\<Esc>", 'tnix')
-    call assert_equal(len(g:mode_seq) - 1, g:index)
-    call assert_equal(2, g:n_to_c)
-    call assert_equal(2, g:c_to_n)
-    unlet g:n_to_c
-    unlet g:c_to_n
-  endif
+  let g:n_to_c = 0
+  au ModeChanged n:c let g:n_to_c += 1
+  let g:c_to_n = 0
+  au ModeChanged c:n let g:c_to_n += 1
+  let g:mode_seq += ['c', 'n', 'c', 'n']
+  call feedkeys("q:\<C-C>\<Esc>", 'tnix')
+  call assert_equal(len(g:mode_seq) - 1, g:index)
+  call assert_equal(2, g:n_to_c)
+  call assert_equal(2, g:c_to_n)
+  unlet g:n_to_c
+  unlet g:c_to_n
 
   au! ModeChanged
   delfunc TestMode
index dc6889495f7cf70b6bdc01cb7bc36d068c62b4eb..ad05f3e044855e57fbeba5c65e621d12b3e6bfae 100644 (file)
@@ -1,8 +1,6 @@
 " Tests for editing the command line.
 
 source check.vim
-CheckFeature cmdwin
-
 source screendump.vim
 
 func Test_getcmdwintype()
index fe97578b1086f69da55bf1f7994d2e1a46acea28..ef265edfb96f7b093f0d9c2a3e778b43fa0aedaf 100644 (file)
@@ -617,8 +617,6 @@ endfunc
 
 " Test for closing the tab page from a command window
 func Test_tabpage_close_cmdwin()
-  CheckFeature cmdwin
-
   tabnew
   call feedkeys("q/:tabclose\<CR>\<Esc>", 'xt')
   call assert_equal(2, tabpagenr('$'))
index 578c97018aab96655d21d81c472870f382da97c9..cb1d01a0b3debf83e0d4e3ae4d2bf12355cac05c 100644 (file)
@@ -367,8 +367,6 @@ endfunc
 
 " Test for using the mouse to increase the height of the cmdline window
 func Test_mouse_cmdwin_resize()
-  CheckFeature cmdwin
-
   let save_mouse = &mouse
   let save_term = &term
   let save_ttymouse = &ttymouse
index 017fa67448233f689d47a19451c528af15c6c468..771875757dcf41f88e9e8f09dcec06d27625cfe1 100644 (file)
@@ -20,8 +20,6 @@ func Test_window_cmd_ls0_with_split()
 endfunc
 
 func Test_window_cmd_cmdwin_with_vsp()
-  CheckFeature cmdwin
-
   let efmt = 'Expected 0 but got %d (in ls=%d, %s window)'
   for v in range(0, 2)
     exec "set ls=" . v
index 540ea3713a21d7bb97ae0cb09654c202d223667f..61f2fd23bca2bee3b8743812d6564943fab11f90 100644 (file)
@@ -699,6 +699,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    663,
 /**/
     662,
 /**/