# HG changeset patch # User Bram Moolenaar # Date 1577661304 -3600 # Node ID c77d7a415e597b2918cd193d0883b14588202ae8 # Parent 8fe692b5ad5366473cf9bc672470beb40677c7c1 patch 8.2.0058: running tests changes ~/.viminfo Commit: https://github.com/vim/vim/commit/eb698d0b3295675f184ad4b62034e064cded4ade Author: Bram Moolenaar Date: Mon Dec 30 00:07:57 2019 +0100 patch 8.2.0058: running tests changes ~/.viminfo Problem: Running tests changes ~/.viminfo. Solution: Make 'viminfo' empty when summarizing tests results. (closes https://github.com/vim/vim/issues/5414) diff --git a/src/testdir/summarize.vim b/src/testdir/summarize.vim --- a/src/testdir/summarize.vim +++ b/src/testdir/summarize.vim @@ -1,6 +1,7 @@ if 1 " This is executed only with the eval feature set nocompatible + set viminfo= func Count(match, type) if a:type ==# 'executed' let g:executed += (a:match+0) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -743,6 +743,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 58, +/**/ 57, /**/ 56,