From: Bram Moolenaar Date: Sun, 30 Jul 2017 11:28:23 +0000 (+0200) Subject: patch 8.0.0810: MS-Windows: tests still hang X-Git-Tag: v8.0.0810 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d0b6c6c54e0f3c2984e1d9b316a587ef14cfd53a;p=vim patch 8.0.0810: MS-Windows: tests still hang Problem: MS-Windows: tests still hang. Solution: Only create the XfakeHOME directory if it does not exist yet. --- diff --git a/src/testdir/setup.vim b/src/testdir/setup.vim index 31b133f10..cb8bebb47 100644 --- a/src/testdir/setup.vim +++ b/src/testdir/setup.vim @@ -24,5 +24,7 @@ if 1 " Make sure $HOME does not get read or written. " It must exist, gnome tries to create $HOME/.gnome2 let $HOME = getcwd() . '/XfakeHOME' - call mkdir($HOME) + if !isdirectory($HOME) + call mkdir($HOME) + endif endif diff --git a/src/version.c b/src/version.c index 94aa40e76..fa67f7f57 100644 --- a/src/version.c +++ b/src/version.c @@ -769,6 +769,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 810, /**/ 809, /**/