diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-02-11 17:44:13 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-02-11 19:03:29 +0100 |
commit | 22173a64dd931871709337e4c4abc056fb36c869 (patch) | |
tree | 3c6c7f9cd26a7cee5cbc88f8ed9bae097ea418fb | |
parent | fda2b1e90623764a0d620a9b03c23ae37125d63b (diff) | |
download | rneovim-22173a64dd931871709337e4c4abc056fb36c869.tar.gz rneovim-22173a64dd931871709337e4c4abc056fb36c869.tar.bz2 rneovim-22173a64dd931871709337e4c4abc056fb36c869.zip |
vim-patch:8.0.0479: remote_peek() is not tested
Problem: remote_peek() is not tested.
Solution: Add a test.
https://github.com/vim/vim/commit/6caf606b144bbe2bf3ac515a194f5ff18fdfd331
-rw-r--r-- | src/nvim/testdir/runtest.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/testdir/runtest.vim b/src/nvim/testdir/runtest.vim index 0cb05a4f5a..c58db3e533 100644 --- a/src/nvim/testdir/runtest.vim +++ b/src/nvim/testdir/runtest.vim @@ -257,6 +257,8 @@ for s:test in sort(s:tests) call RunTheTest(s:test) if len(v:errors) > 0 && index(s:flaky, s:test) >= 0 + call add(s:messages, 'Found errors in ' . s:test . ':') + call extend(s:messages, v:errors) call add(s:messages, 'Flaky test failed, running it again') let first_run = v:errors |