changeset 17700:97b859062d67 v8.1.1847

patch 8.1.1847: suspend test is failing commit https://github.com/vim/vim/commit/185d68a9d08f18440af93dd0f232e38f1819ddb2 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Aug 15 11:21:15 2019 +0200 patch 8.1.1847: suspend test is failing Problem: Suspend test is failing. Solution: Do not use GetVimCommandClean().
author Bram Moolenaar <Bram@vim.org>
date Thu, 15 Aug 2019 11:30:04 +0200
parents 2720dabe0989
children 4317f22624e8
files src/testdir/test_suspend.vim src/version.c
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_suspend.vim
+++ b/src/testdir/test_suspend.vim
@@ -26,8 +26,8 @@ func Test_suspend()
   " Wait for shell prompt.
   call WaitForAssert({-> assert_match('[$#] $', term_getline(buf, '.'))})
 
-  call term_sendkeys(buf, GetVimCommandClean()
-        \               . " -X"
+  call term_sendkeys(buf, v:progpath
+        \               . " --clean -X"
         \               . " -c 'set nu'"
         \               . " -c 'call setline(1, \"foo\")'"
         \               . " Xfoo\<CR>")
--- a/src/version.c
+++ b/src/version.c
@@ -770,6 +770,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1847,
+/**/
     1846,
 /**/
     1845,