summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_clientserver.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-04-08 22:56:34 +0200
committerBram Moolenaar <Bram@vim.org>2020-04-08 22:56:34 +0200
commit25d57009520f0e590920b9f953b1cbbb358e72a2 (patch)
treec4bd7a9e4cb94522f689afbab121df5ef37e1ed2 /src/testdir/test_clientserver.vim
parent6a2c5a7dd5c9215cc030d5ea6e4616d782c091dd (diff)
patch 8.2.0534: client-server test fails under valgrindv8.2.0534
Problem: Client-server test fails under valgrind. Solution: Use WaitForAssert().
Diffstat (limited to 'src/testdir/test_clientserver.vim')
-rw-r--r--src/testdir/test_clientserver.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test_clientserver.vim b/src/testdir/test_clientserver.vim
index 7936227eb4..4a48aed91c 100644
--- a/src/testdir/test_clientserver.vim
+++ b/src/testdir/test_clientserver.vim
@@ -129,7 +129,7 @@ func Test_client_server()
" Edit files in separate tab pages
call system(cmd .. ' --remote-tab Xfile1 Xfile2 Xfile3')
- call assert_equal('3', remote_expr(name, 'tabpagenr("$")'))
+ call WaitForAssert({-> assert_equal('3', remote_expr(name, 'tabpagenr("$")'))})
call assert_equal('Xfile2', remote_expr(name, 'bufname(tabpagebuflist(2)[0])'))
eval name->remote_send(":%bw!\<CR>")