diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-03-02 22:43:01 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-03-02 22:43:01 +0100 |
commit | 358f6b0a36d25e0e2f8f1fc625974816b71fa50a (patch) | |
tree | 2d29a9febb1d5b8bbd91d3069e2a6816d6330396 /src/testdir | |
parent | caf6434ac937cf26050276d7b474be2d2d6a06b3 (diff) | |
download | vim-git-358f6b0a36d25e0e2f8f1fc625974816b71fa50a.tar.gz |
patch 8.0.0400: some tests have a one second delayv8.0.0400
Problem: Some tests have a one second delay.
Solution: Add --not-a-term in RunVim().
Diffstat (limited to 'src/testdir')
-rw-r--r-- | src/testdir/shared.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/testdir/shared.vim b/src/testdir/shared.vim index 8160af385..53f5a2e86 100644 --- a/src/testdir/shared.vim +++ b/src/testdir/shared.vim @@ -192,6 +192,7 @@ func RunVimPiped(before, after, arguments, pipecmd) 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 != '' |