changeset 14021:945d343d3024 v8.1.0028

patch 8.1.0028: prompt buffer test fails on MS-Windows commit https://github.com/vim/vim/commit/1149382d21402474c771862d082a541e23beb108 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 3 15:08:09 2018 +0200 patch 8.1.0028: prompt buffer test fails on MS-Windows Problem: Prompt buffer test fails on MS-Windows. Solution: Disable the test for now. Remove stray assert.
author Christian Brabandt <cb@256bit.org>
date Sun, 03 Jun 2018 15:15:05 +0200
parents 3ab8d67331f3
children 2aeb29b7ca4e
files src/testdir/test_prompt_buffer.vim src/version.c
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_prompt_buffer.vim
+++ b/src/testdir/test_prompt_buffer.vim
@@ -11,7 +11,10 @@ func Test_prompt_basic()
   " We need to use a terminal window to be able to feed keys without leaving
   " Insert mode.
   if !has('terminal')
-    call assert_report('no terminal')
+    return
+  endif
+  if has('win32')
+    " TODO: make this work on MS-Windows
     return
   endif
   call writefile([
--- 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 */
 /**/
+    28,
+/**/
     27,
 /**/
     26,