# HG changeset patch # User Bram Moolenaar # Date 1594580403 -7200 # Node ID 6dff32278cd811e6d2b7c025b0ada734d8afa192 # Parent 818e66497eb93d0ac232ead899e5bdf6648c6d47 patch 8.2.1197: clientserver test still fails on MS-Windows Commit: https://github.com/vim/vim/commit/c212dd0a346d57f62013094ea6861eb28e33023c Author: Bram Moolenaar Date: Sun Jul 12 20:49:29 2020 +0200 patch 8.2.1197: clientserver test still fails on MS-Windows Problem: Clientserver test still fails on MS-Windows. Solution: Expect a different error message. diff --git a/src/testdir/test_clientserver.vim b/src/testdir/test_clientserver.vim --- a/src/testdir/test_clientserver.vim +++ b/src/testdir/test_clientserver.vim @@ -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 diff --git a/src/version.c b/src/version.c --- 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 */ /**/ + 1197, +/**/ 1196, /**/ 1195,