diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-11-29 21:54:44 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-11-29 21:54:44 +0100 |
commit | 4b785f69c0616dba5d3f38e8ce4b5398cec89407 (patch) | |
tree | fea8b654714ff391135ce61da9c9d0792b7a5265 /src/testdir/shared.vim | |
parent | f422bcc7f9615fe91fa69b059cfe4785093d3d4a (diff) | |
download | vim-git-4b785f69c0616dba5d3f38e8ce4b5398cec89407.tar.gz |
patch 8.0.0105v8.0.0105
Problem: When using ch_read() with zero timeout, can't tell the difference
between reading an empty line and nothing available.
Solution: Add ch_canread().
Diffstat (limited to 'src/testdir/shared.vim')
-rw-r--r-- | src/testdir/shared.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/shared.vim b/src/testdir/shared.vim index 45a2ea496..8160af385 100644 --- a/src/testdir/shared.vim +++ b/src/testdir/shared.vim @@ -88,7 +88,7 @@ func RunServer(cmd, testfunc, args) call call(function(a:testfunc), [port]) catch - call assert_false(1, "Caught exception: " . v:exception) + call assert_false(1, 'Caught exception: "' . v:exception . '" in ' . v:throwpoint) finally call s:kill_server(a:cmd) endtry |