# HG changeset patch # User Christian Brabandt # Date 1491048905 -7200 # Node ID cb2040d458764cda9bc4309637d44571f2d666ab # Parent 0deb1becf6473240a0b3d5475c224a593349e07a patch 8.0.0532: test with long directory name fails on Mac commit https://github.com/vim/vim/commit/c77d6757471fa207520586bbdbc1b30af84cf5c8 Author: Bram Moolenaar Date: Sat Apr 1 14:13:14 2017 +0200 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. diff --git a/src/testdir/test_edit.vim b/src/testdir/test_edit.vim --- a/src/testdir/test_edit.vim +++ b/src/testdir/test_edit.vim @@ -1324,7 +1324,7 @@ func! Test_edit_rightleft() 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 diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 532, +/**/ 531, /**/ 530,