diff options
author | ckelsel <ckelsel@hotmail.com> | 2018-06-16 19:40:58 +0800 |
---|---|---|
committer | ckelsel <ckelsel@hotmail.com> | 2018-06-16 19:41:18 +0800 |
commit | 264725c25fecd7f30d1386cc20042cfcf4e43b9e (patch) | |
tree | 83f77bf249977c4afd394498c20c17bc99142434 | |
parent | 9a1234e57f404638f0e040323b0097a6dc38e17f (diff) | |
download | rneovim-264725c25fecd7f30d1386cc20042cfcf4e43b9e.tar.gz rneovim-264725c25fecd7f30d1386cc20042cfcf4e43b9e.tar.bz2 rneovim-264725c25fecd7f30d1386cc20042cfcf4e43b9e.zip |
vim-patch:8.0.0532: test with long directory name fails on Mac
Problem: Test with long directory name fails on Mac.
Solution: Skip the test on Mac systems.
https://github.com/vim/vim/commit/c77d6757471fa207520586bbdbc1b30af84cf5c8
-rw-r--r-- | src/nvim/testdir/test_edit.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_edit.vim b/src/nvim/testdir/test_edit.vim index daa86a2f80..9275acd09d 100644 --- a/src/nvim/testdir/test_edit.vim +++ b/src/nvim/testdir/test_edit.vim @@ -1324,7 +1324,7 @@ func Test_edit_quit() endfunc func Test_edit_complete_very_long_name() - if !has('unix') + if !has('unix') || has('mac') " Long directory names only work on Unix. return endif |