diff options
author | Daniel Hahler <git@thequod.de> | 2019-06-18 00:21:04 +0200 |
---|---|---|
committer | Daniel Hahler <git@thequod.de> | 2019-06-18 00:21:52 +0200 |
commit | d43cf02186d10d96e325704e0bb146e3fd91a11d (patch) | |
tree | 9e6825e1f5896e2610e5f43830aad5f095ccdbbe | |
parent | 8db93d0d83d834d736c1dddb51a4c94c89aae1be (diff) | |
download | rneovim-d43cf02186d10d96e325704e0bb146e3fd91a11d.tar.gz rneovim-d43cf02186d10d96e325704e0bb146e3fd91a11d.tar.bz2 rneovim-d43cf02186d10d96e325704e0bb146e3fd91a11d.zip |
vim-patch:8.0.1055: bufline test hangs on MS-Windows
Problem: Bufline test hangs on MS-Windows.
Solution: Avoid message for writing file. Source shared.vim when running
test individually.
https://github.com/vim/vim/commit/11aa62f8f949bb590b4d7792a334885fba5e4137
-rw-r--r-- | src/nvim/testdir/test_bufline.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_bufline.vim b/src/nvim/testdir/test_bufline.vim index 30e8ed8b42..cc5c10e985 100644 --- a/src/nvim/testdir/test_bufline.vim +++ b/src/nvim/testdir/test_bufline.vim @@ -32,7 +32,7 @@ func Test_setline_startup() if cmd == '' return endif - call writefile(['call setline(1, "Hello")', 'w Xtest', 'q!'], 'Xscript') + call writefile(['call setline(1, "Hello")', 'silent w Xtest', 'q!'], 'Xscript') call system(cmd) call assert_equal(['Hello'], readfile('Xtest')) |