patch 8.1.1169: writing coverage info in a separate dir is not needed
Problem: Writing coverage info in a separate dir is not needed.
Solution: Revert the changes to use a separate directory.
diff --git a/src/testdir/screendump.vim b/src/testdir/screendump.vim
index 1630dfa..9687dc8 100644
--- a/src/testdir/screendump.vim
+++ b/src/testdir/screendump.vim
@@ -55,15 +55,11 @@
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.
diff --git a/src/version.c b/src/version.c
index 99ffbc3..367b170 100644
--- a/src/version.c
+++ b/src/version.c
@@ -772,6 +772,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1169,
+/**/
1168,
/**/
1167,