]> granicus.if.org Git - vim/commitdiff
patch 8.0.0701: system test failing when using X11 forwarding v8.0.0701
authorBram Moolenaar <Bram@vim.org>
Sat, 8 Jul 2017 15:03:21 +0000 (17:03 +0200)
committerBram Moolenaar <Bram@vim.org>
Sat, 8 Jul 2017 15:03:21 +0000 (17:03 +0200)
Problem:    System test failing when using X11 forwarding.
Solution:   Set $XAUTHORITY before changing $HOME. (closes #1812)
            Also use a better check for the exit value.

src/testdir/setup.vim
src/testdir/test_system.vim
src/version.c

index a02840158b5bc9a488c183231e9d4550e83b4b2a..4b6c089637de63372ada0e026aac563bffc20a1e 100644 (file)
@@ -8,7 +8,11 @@ endif
 
 " Only when the +eval feature is present. 
 if 1
+  " Make sure the .Xauthority file can be found after changing $HOME.
+  if $XAUTHORITY == ''
+    let $XAUTHORITY = $HOME . '/.Xauthority'
+  endif
+
   " Make sure $HOME does not get read or written.
   let $HOME = '/does/not/exist'
 endif
-
index d6886b0f0c16fc1a0b62a152db59e1e3fc5b9a68..5f766c76230f9a3656e043356ec432a2e0f39a8c 100644 (file)
@@ -49,12 +49,12 @@ endfunction
 
 function! Test_system_exmode()
   if has('unix') " echo $? only works on Unix
-    let cmd = ' -es -u NONE -c "source Xscript" +q; echo $?'
+    let cmd = ' -es -u NONE -c "source Xscript" +q; echo "result=$?"'
     " Need to put this in a script, "catch" isn't found after an unknown
     " function.
     call writefile(['try', 'call doesnotexist()', 'catch', 'endtry'], 'Xscript')
     let a = system(v:progpath . cmd)
-    call assert_equal('0', a[0])
+    call assert_match('result=0', a)
     call assert_equal(0, v:shell_error)
   endif
 
index 7c1fb103aebb0d046da3ed84a3cfdab8f176a01b..42fb71da7b5d0c82bfb465eac1d7795d07e9eadd 100644 (file)
@@ -764,6 +764,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    701,
 /**/
     700,
 /**/