]> granicus.if.org Git - vim/commitdiff
patch 8.0.0545: edit test may fail on some systems v8.0.0545
authorBram Moolenaar <Bram@vim.org>
Fri, 7 Apr 2017 12:10:48 +0000 (14:10 +0200)
committerBram Moolenaar <Bram@vim.org>
Fri, 7 Apr 2017 12:10:48 +0000 (14:10 +0200)
Problem:    Edit test may fail on some systems.
Solution:   If creating a directory with a very long path fails, bail out.

src/testdir/test_edit.vim
src/version.c

index 2df0d6f24213e6c7e17b487e26e574ec40c94ddc..0986bf9b1cfb46871e02cbdb6b51b33ffd1dc55a 100644 (file)
@@ -1324,22 +1324,31 @@ func! Test_edit_rightleft()
 endfunc
 
 func Test_edit_complete_very_long_name()
-  if !has('unix') || has('mac')
+  if !has('unix')
     " Long directory names only work on Unix.
     return
   endif
+
+  let dirname = getcwd() . "/Xdir"
+  let longdirname = dirname . repeat('/' . repeat('d', 255), 4)
+  try
+    call mkdir(longdirname, 'p')
+  catch /E739:/
+    " Long directory name probably not supported.
+    call delete(dirname, 'rf')
+    return
+  endtry
+
   " Try to get the Vim window position before setting 'columns'.
   let winposx = getwinposx()
   let winposy = getwinposy()
   let save_columns = &columns
+  " Need at least about 1100 columns to reproduce the problem.
   set columns=2000
   call assert_equal(2000, &columns)
   set noswapfile
 
-  let dirname = getcwd() . "/Xdir"
-  let longdirname = dirname . repeat('/' . repeat('d', 255), 4)
   let longfilename = longdirname . '/' . repeat('a', 255)
-  call mkdir(longdirname, 'p')
   call writefile(['Totum', 'Table'], longfilename)
   new
   exe "next Xfile " . longfilename
index 9db3ea007cc8fa86bb880aa3b417cdd57a672909..4d386eebcf8be423d30f6c9b014f9dcbf4970dee 100644 (file)
@@ -764,6 +764,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    545,
 /**/
     544,
 /**/