1
0
forked from aniani/vim

patch 8.0.0805: GUI test fails with gnome2

Problem:    GUI test fails with gnome2.
Solution:   Set $HOME to an existing directory.
This commit is contained in:
Bram Moolenaar
2017-07-29 20:39:53 +02:00
parent 91d348abfc
commit d1ee0043c0
3 changed files with 8 additions and 1 deletions

View File

@@ -14,5 +14,7 @@ if 1
endif
" Make sure $HOME does not get read or written.
let $HOME = '/does/not/exist'
" It must exist, gnome tries to create $HOME/.gnome2
let $HOME = getcwd() . '/XfakeHOME'
call mkdir($HOME)
endif