From 264725c25fecd7f30d1386cc20042cfcf4e43b9e Mon Sep 17 00:00:00 2001 From: ckelsel Date: Sat, 16 Jun 2018 19:40:58 +0800 Subject: 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 --- src/nvim/testdir/test_edit.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit