]> granicus.if.org Git - vim/commitdiff
patch 8.0.0326: packadd test uses wrong directory name v8.0.0326
authorBram Moolenaar <Bram@vim.org>
Sat, 11 Feb 2017 22:00:36 +0000 (23:00 +0100)
committerBram Moolenaar <Bram@vim.org>
Sat, 11 Feb 2017 22:00:36 +0000 (23:00 +0100)
Problem:    Packadd test uses wrong directory name.
Solution:   Use the variable name value. (Hirohito Higashi)

src/testdir/test_packadd.vim
src/version.c

index bf00fa26c89a5746b8856670e181956c6c4ba2f5..8ffebf9bf967bcb6ca276e9a7b02af718e4d888d 100644 (file)
@@ -73,7 +73,7 @@ func Test_packadd_symlink_dir()
   endif
   let top2_dir = s:topdir . '/Xdir2'
   let real_dir = s:topdir . '/Xsym'
-  silent !ln -s real_dir top2_dir
+  exec "silent !ln -s" real_dir top2_dir
   let &rtp = top2_dir . ',' . top2_dir . '/after'
   let &packpath = &rtp
 
@@ -98,7 +98,7 @@ func Test_packadd_symlink_dir()
 
   set rtp&
   let rtp = &rtp
-  silent !rm top2_dir
+  exec "silent !rm" top2_dir
 endfunc
 
 " Check command-line completion for 'packadd'
index 49b03ca7178c599a8b9e4d952f0cffa6459d3dd6..381a6d5d4d61c15a0176af39498b5985afb07e76 100644 (file)
@@ -764,6 +764,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    326,
 /**/
     325,
 /**/