From: Bram Moolenaar Date: Sat, 1 Apr 2017 12:13:14 +0000 (+0200) Subject: patch 8.0.0532: test with long directory name fails on Mac X-Git-Tag: v8.0.0532 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c77d6757471fa207520586bbdbc1b30af84cf5c8;p=thirdparty%2Fvim.git 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 index 70e6bea37d..4db7bcf3a5 100644 --- 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 index 56ff4f6ccf..76929e7f9d 100644 --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 532, /**/ 531, /**/