diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-06-11 22:31:12 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-06-11 22:31:21 -0400 |
commit | 005316ae41a03e75fac37a4892e2b8efde2f8b57 (patch) | |
tree | 9b080060249a3e7dd1c3a624a3eef0dd5f000ae0 | |
parent | f8d0e41b2864da53a7763a71cf27bb643aca7a0f (diff) | |
download | rneovim-005316ae41a03e75fac37a4892e2b8efde2f8b57.tar.gz rneovim-005316ae41a03e75fac37a4892e2b8efde2f8b57.tar.bz2 rneovim-005316ae41a03e75fac37a4892e2b8efde2f8b57.zip |
vim-patch:8.0.1689: no tests for xxd
Problem: No tests for xxd.
Solution: Add a test. (Christian Brabandt)
https://github.com/vim/vim/commit/29f9ed20b42e7badea6cfb82fb1fb8d71f33e282
-rw-r--r-- | src/nvim/testdir/runtest.vim | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/nvim/testdir/runtest.vim b/src/nvim/testdir/runtest.vim index aaddc90c99..65329b58f8 100644 --- a/src/nvim/testdir/runtest.vim +++ b/src/nvim/testdir/runtest.vim @@ -200,7 +200,11 @@ func FinishTesting() write endif - let message = 'Executed ' . s:done . (s:done > 1 ? ' tests' : ' test') + if s:done == 0 + let message = 'NO tests executed' + else + let message = 'Executed ' . s:done . (s:done > 1 ? ' tests' : ' test') + endif echo message call add(s:messages, message) if s:fail > 0 |