aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Edmund Lazo <janedmundlazo@hotmail.com>2018-08-07 23:04:01 -0400
committerJan Edmund Lazo <janedmundlazo@hotmail.com>2018-08-07 23:04:04 -0400
commitd6af4253228c20069ee66d0324fd1441aed8e3e7 (patch)
treeb48852887a95444458ca4ec7e7c85bb3172e7d8d
parent5493139c9fa7d6ecaa6d008ec0cc4fb5c51484fd (diff)
downloadrneovim-d6af4253228c20069ee66d0324fd1441aed8e3e7.tar.gz
rneovim-d6af4253228c20069ee66d0324fd1441aed8e3e7.tar.bz2
rneovim-d6af4253228c20069ee66d0324fd1441aed8e3e7.zip
oldtests: win: set shellpipe for cmd.exe
Redirect errors from :make to error file. Fix execption error in test_compiler.vim on Windows.
-rw-r--r--src/nvim/testdir/setup.vim1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/testdir/setup.vim b/src/nvim/testdir/setup.vim
index f3cc7da70f..51bf8ce0fc 100644
--- a/src/nvim/testdir/setup.vim
+++ b/src/nvim/testdir/setup.vim
@@ -33,4 +33,5 @@ if has('win32')
let $TERM = ''
let &shell = empty($COMSPEC) ? exepath('cmd.exe') : $COMSPEC
set shellcmdflag=/s/c shellxquote=\" shellredir=>%s\ 2>&1
+ let &shellpipe = &shellredir
endif