From: Bram Moolenaar Date: Sun, 29 Dec 2019 23:07:57 +0000 (+0100) Subject: patch 8.2.0058: running tests changes ~/.viminfo X-Git-Tag: v8.2.0058 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eb698d0b3295675f184ad4b62034e064cded4ade;p=vim patch 8.2.0058: running tests changes ~/.viminfo Problem: Running tests changes ~/.viminfo. Solution: Make 'viminfo' empty when summarizing tests results. (closes #5414) --- diff --git a/src/testdir/summarize.vim b/src/testdir/summarize.vim index 9cf3f694c..4e4135287 100644 --- 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 index 885e6bfc8..5c27a504a 100644 --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 58, /**/ 57, /**/