Skip to content

Commit c77d675

Browse files
committed
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.
1 parent 9b81079 commit c77d675

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/testdir/test_edit.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1324,7 +1324,7 @@ func! Test_edit_rightleft()
13241324
endfunc
13251325

13261326
func Test_edit_complete_very_long_name()
1327-
if !has('unix')
1327+
if !has('unix') || has('mac')
13281328
" Long directory names only work on Unix.
13291329
return
13301330
endif

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
532,
767769
/**/
768770
531,
769771
/**/

0 commit comments

Comments
 (0)