summaryrefslogtreecommitdiffstats
path: root/src/testdir/screendump.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-04-13 22:44:51 +0200
committerBram Moolenaar <Bram@vim.org>2019-04-13 22:44:51 +0200
commit837854d1bc01d91ff463a2cfdf8aec9b89d5fbd1 (patch)
tree1e4924dea6cbbdb30f618f1ac0c0a13dc1ef49d8 /src/testdir/screendump.vim
parent87dcfd75c218107ca966c80a0a56b236be046fc9 (diff)
patch 8.1.1169: writing coverage info in a separate dir is not neededv8.1.1169
Problem: Writing coverage info in a separate dir is not needed. Solution: Revert the changes to use a separate directory.
Diffstat (limited to 'src/testdir/screendump.vim')
-rw-r--r--src/testdir/screendump.vim4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/testdir/screendump.vim b/src/testdir/screendump.vim
index 1630dfa0c5..9687dc806e 100644
--- a/src/testdir/screendump.vim
+++ b/src/testdir/screendump.vim
@@ -55,15 +55,11 @@ func RunVimInTerminal(arguments, options)
let cmd = GetVimCommandClean()
" Add -v to have gvim run in the terminal (if possible)
- " The GCOV_ environment variables cause the Vim running in the terminal to
- " write the coverage information in the "nested" directory, to avoid two Vim
- " instances try to write to the same coverage info file.
let cmd .= ' -v ' . a:arguments
let buf = term_start(cmd, {
\ 'curwin': 1,
\ 'term_rows': rows,
\ 'term_cols': cols,
- \ 'env': {'GCOV_PREFIX': 'nested', 'GCOV_PREFIX_STRIP': 99},
\ })
if &termwinsize == ''
" in the GUI we may end up with a different size, try to set it.