# HG changeset patch # User Bram Moolenaar # Date 1623834003 -7200 # Node ID d8216679a9715ca3059c882a4a564db515e768cf # Parent 18fa9cff700526bd6c61dddccf9667acc3e79995 patch 8.2.3009: startup test may hang Commit: https://github.com/vim/vim/commit/b90ac5e96e40706ffb039db64b92fcd16fa78c04 Author: Bram Moolenaar Date: Wed Jun 16 10:59:36 2021 +0200 patch 8.2.3009: startup test may hang Problem: Startup test may hang. Solution: Do not run the test in the GUI. diff --git a/src/testdir/test_startup.vim b/src/testdir/test_startup.vim --- a/src/testdir/test_startup.vim +++ b/src/testdir/test_startup.vim @@ -1302,6 +1302,8 @@ func Test_write_in_vimrc() endfunc func Test_echo_true_in_cmd() + CheckNotGui + let lines =<< trim END echo v:true call writefile(['done'], 'Xresult') @@ -1313,7 +1315,6 @@ func Test_echo_true_in_cmd() endif call delete('Xscript') call delete('Xresult') - endfunc " vim: shiftwidth=2 sts=2 expandtab diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3009, +/**/ 3008, /**/ 3007,