changeset 13178:f83d3a633ccb v8.0.1463

patch 8.0.1463: test fails without 'autochdir' option commit https://github.com/vim/vim/commit/ec48a9c58989babcad23d73483955f35b6e41492 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 3 20:11:40 2018 +0100 patch 8.0.1463: test fails without 'autochdir' option Problem: Test fails without 'autochdir' option. Solution: Skip test if 'autochdir' is not supported.
author Christian Brabandt <cb@256bit.org>
date Sat, 03 Feb 2018 20:15:05 +0100
parents 2beee18bca84
children 32d3b42f9524
files src/testdir/test_autocmd.vim src/version.c
diffstat 2 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_autocmd.vim
+++ b/src/testdir/test_autocmd.vim
@@ -1232,6 +1232,9 @@ function Test_dirchanged_local()
 endfunc
 
 function Test_dirchanged_auto()
+  if !exists('+autochdir')
+    return
+  endif
   call s:Before_test_dirchanged()
   call test_autochdir()
   autocmd test_dirchanged DirChanged auto call add(s:li, "auto:")
--- a/src/version.c
+++ b/src/version.c
@@ -772,6 +772,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1463,
+/**/
     1462,
 /**/
     1461,