diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2019-05-20 10:42:31 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-20 10:42:31 +0200 |
| commit | 60710dee82070834b2bd156738cd1a5379dfc640 (patch) | |
| tree | 72cf74ab0373fc59b9d09605248bc1d66ceec36c /src/nvim/testdir/test_clientserver.vim | |
| parent | 8c842b39ba7e88fbe6e2fd562731030d5499e343 (diff) | |
| parent | 7ea350456d6b2f9c92f3dcf6feb7daa3e0abc079 (diff) | |
| download | rneovim-60710dee82070834b2bd156738cd1a5379dfc640.tar.gz rneovim-60710dee82070834b2bd156738cd1a5379dfc640.tar.bz2 rneovim-60710dee82070834b2bd156738cd1a5379dfc640.zip | |
Merge #10033 from janlazo/vim-8.0.1082
vim-patch:8.0.{1082,1497,1498,1513},8.1.{901,1357,1358}
Diffstat (limited to 'src/nvim/testdir/test_clientserver.vim')
| -rw-r--r-- | src/nvim/testdir/test_clientserver.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_clientserver.vim b/src/nvim/testdir/test_clientserver.vim index 60ef20e0b2..02840de743 100644 --- a/src/nvim/testdir/test_clientserver.vim +++ b/src/nvim/testdir/test_clientserver.vim @@ -35,7 +35,8 @@ func Test_client_server() endif " Takes a short while for the server to be active. - call WaitFor('serverlist() =~ "' . name . '"') + " When using valgrind it takes much longer. + call WaitFor('serverlist() =~ "' . name . '"', 5000) call assert_match(name, serverlist()) call remote_foreground(name) |