changeset 11293:cb2040d45876 v8.0.0532

patch 8.0.0532: test with long directory name fails on Mac commit https://github.com/vim/vim/commit/c77d6757471fa207520586bbdbc1b30af84cf5c8 Author: Bram Moolenaar <Bram@vim.org> 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.
author Christian Brabandt <cb@256bit.org>
date Sat, 01 Apr 2017 14:15:05 +0200
parents 0deb1becf647
children 6a79bcf55287
files src/testdir/test_edit.vim src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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,