From eb698d0b3295675f184ad4b62034e064cded4ade Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 30 Dec 2019 00:07:57 +0100 Subject: [PATCH] patch 8.2.0058: running tests changes ~/.viminfo Problem: Running tests changes ~/.viminfo. Solution: Make 'viminfo' empty when summarizing tests results. (closes #5414) --- src/testdir/summarize.vim | 1 + src/version.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/testdir/summarize.vim b/src/testdir/summarize.vim index 9cf3f694ca..4e4135287b 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 885e6bfc86..5c27a504a0 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, /**/ -- 2.47.2