diff src/testdir/test_mapping.vim @ 17249:3e2e998ce0db v8.1.1624

patch 8.1.1624: when testing in the GUI may try to run gvim in a terminal commit https://github.com/vim/vim/commit/0d702028feb859e6bde9a0c943d398d86294beb7 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jul 4 14:20:41 2019 +0200 patch 8.1.1624: when testing in the GUI may try to run gvim in a terminal Problem: When testing in the GUI may try to run gvim in a terminal. Solution: Add the -v argument. (Yee Cheng Chin, closes https://github.com/vim/vim/issues/4605) Don't skip tests that work now.
author Bram Moolenaar <Bram@vim.org>
date Thu, 04 Jul 2019 14:30:05 +0200
parents fceb0977275a
children 0da9bc55c31a
line wrap: on
line diff
--- a/src/testdir/test_mapping.vim
+++ b/src/testdir/test_mapping.vim
@@ -399,7 +399,7 @@ func Test_motionforce_omap()
 endfunc
 
 func Test_error_in_map_expr()
-  if !has('terminal') || has('gui_running')
+  if !has('terminal') || (has('win32') && has('gui_running'))
     throw 'Skipped: cannot run Vim in a terminal window'
   endif
 
@@ -413,7 +413,7 @@ func Test_error_in_map_expr()
   [CODE]
   call writefile(lines, 'Xtest.vim')
 
-  let buf = term_start(GetVimCommandClean() .. ' -S Xtest.vim', {'term_rows': 8})
+  let buf = term_start(GetVimCommandCleanTerm() .. ' -S Xtest.vim', {'term_rows': 8})
   let job = term_getjob(buf)
   call WaitForAssert({-> assert_notequal('', term_getline(buf, 8))})