changeset 21289:37f404a13623 v8.2.1195

patch 8.2.1195: clientserver test fails on MS-Windows Commit: https://github.com/vim/vim/commit/4d57ba02029071e5947a54766e9f5d42e3bb3008 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 12 20:00:24 2020 +0200 patch 8.2.1195: clientserver test fails on MS-Windows Problem: Clientserver test fails on MS-Windows. Solution: Expect a different error message.
author Bram Moolenaar <Bram@vim.org>
date Sun, 12 Jul 2020 20:15:07 +0200
parents 1b8a30833e59
children b6e04e03f5ca
files src/testdir/test_clientserver.vim src/version.c
diffstat 2 files changed, 6 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_clientserver.vim
+++ b/src/testdir/test_clientserver.vim
@@ -166,8 +166,10 @@ func Test_client_server()
 
   call assert_fails('call remote_startserver([])', 'E730:')
   call assert_fails("let x = remote_peek([])", 'E730:')
-  call assert_fails("let x = remote_read('vim10')", ['E573:.*vim10'])
-  call assert_fails("call server2client('abc', 'xyz')", ['E573:.*abc'])
+  call assert_fails("let x = remote_read('vim10')",
+        \ [has('unix') ? 'E573:.*vim10' : 'E277:.*vim10'])
+  call assert_fails("call server2client('abc', 'xyz')",
+        \ [has('unix') ? 'E573:.*abc' : 'E258:.*abc'])
 endfunc
 
 " Uncomment this line to get a debugging log
--- a/src/version.c
+++ b/src/version.c
@@ -755,6 +755,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1195,
+/**/
     1194,
 /**/
     1193,