]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 8.2.1197: clientserver test still fails on MS-Windows v8.2.1197
authorBram Moolenaar <Bram@vim.org>
Sun, 12 Jul 2020 18:49:29 +0000 (20:49 +0200)
committerBram Moolenaar <Bram@vim.org>
Sun, 12 Jul 2020 18:49:29 +0000 (20:49 +0200)
Problem:    Clientserver test still fails on MS-Windows.
Solution:   Expect a different error message.

src/testdir/test_clientserver.vim
src/version.c

index dbd832eba33191fb1206505669a13fe4ba91fd15..db63ce3afaa1843f0691d290e8731e87495ddfdc 100644 (file)
@@ -167,9 +167,9 @@ 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')",
-        \ [has('unix') ? 'E573:.*vim10' : 'E277:.*vim10'])
+        \ has('unix') ? ['E573:.*vim10'] : 'E277:')
   call assert_fails("call server2client('abc', 'xyz')",
-        \ [has('unix') ? 'E573:.*abc' : 'E258:.*abc'])
+        \ has('unix') ? ['E573:.*abc'] : 'E258:')
 endfunc
 
 " Uncomment this line to get a debugging log
index 34acc6b69f548f4a9773ceee58ff8bd5b33ecee6..19b911e465c4bd6b9ee084f628f53d7167237dea 100644 (file)
@@ -754,6 +754,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1197,
 /**/
     1196,
 /**/