comparison src/testdir/test_clientserver.vim @ 21293:6dff32278cd8 v8.2.1197

patch 8.2.1197: clientserver test still fails on MS-Windows Commit: https://github.com/vim/vim/commit/c212dd0a346d57f62013094ea6861eb28e33023c Author: Bram Moolenaar <Bram@vim.org> 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.
author Bram Moolenaar <Bram@vim.org>
date Sun, 12 Jul 2020 21:00:03 +0200
parents 37f404a13623
children 08940efa6b4e
comparison
equal deleted inserted replaced
21292:818e66497eb9 21293:6dff32278cd8
165 endtry 165 endtry
166 166
167 call assert_fails('call remote_startserver([])', 'E730:') 167 call assert_fails('call remote_startserver([])', 'E730:')
168 call assert_fails("let x = remote_peek([])", 'E730:') 168 call assert_fails("let x = remote_peek([])", 'E730:')
169 call assert_fails("let x = remote_read('vim10')", 169 call assert_fails("let x = remote_read('vim10')",
170 \ [has('unix') ? 'E573:.*vim10' : 'E277:.*vim10']) 170 \ has('unix') ? ['E573:.*vim10'] : 'E277:')
171 call assert_fails("call server2client('abc', 'xyz')", 171 call assert_fails("call server2client('abc', 'xyz')",
172 \ [has('unix') ? 'E573:.*abc' : 'E258:.*abc']) 172 \ has('unix') ? ['E573:.*abc'] : 'E258:')
173 endfunc 173 endfunc
174 174
175 " Uncomment this line to get a debugging log 175 " Uncomment this line to get a debugging log
176 " call ch_logfile('channellog', 'w') 176 " call ch_logfile('channellog', 'w')
177 177