# HG changeset patch # User Christian Brabandt # Date 1488491105 -3600 # Node ID ca8f2d24a79c06acd831ef10afe130c5abb9cfed # Parent 44b7e807403cb9045b8343fa66fba05ccf4d7f53 patch 8.0.0400: some tests have a one second delay commit https://github.com/vim/vim/commit/358f6b0a36d25e0e2f8f1fc625974816b71fa50a Author: Bram Moolenaar Date: Thu Mar 2 22:43:01 2017 +0100 patch 8.0.0400: some tests have a one second delay Problem: Some tests have a one second delay. Solution: Add --not-a-term in RunVim(). diff --git a/src/testdir/shared.vim b/src/testdir/shared.vim --- a/src/testdir/shared.vim +++ b/src/testdir/shared.vim @@ -192,6 +192,7 @@ func RunVimPiped(before, after, argument if cmd !~ '-u NONE' let cmd = cmd . ' -u NONE' endif + let cmd .= ' --not-a-term' " With pipecmd we can't set VIMRUNTIME. if a:pipecmd != '' diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 400, +/**/ 399, /**/ 398,