# HG changeset patch # User Bram Moolenaar # Date 1559935805 -7200 # Node ID 7160dcd5c1d22024720f632dfc0912fa0eb8801e # Parent 484cc6f86870311307efaa65d9852244f535c73c patch 8.1.1488: summary of tests has incorrect failed count commit https://github.com/vim/vim/commit/150f0550f45b836200a189e4d34417f4d3467455 Author: Bram Moolenaar Date: Fri Jun 7 21:29:50 2019 +0200 patch 8.1.1488: summary of tests has incorrect failed count Problem: Summary of tests has incorrect failed count. Solution: Add to the failed count instead of setting it. (Christian Brabandt) diff --git a/src/testdir/summarize.vim b/src/testdir/summarize.vim --- a/src/testdir/summarize.vim +++ b/src/testdir/summarize.vim @@ -6,7 +6,7 @@ if 1 if a:type ==# 'executed' let g:executed += (a:match+0) elseif a:type ==# 'failed' - let g:failed = a:match+0 + let g:failed += a:match+0 elseif a:type ==# 'skipped' let g:skipped += 1 call extend(g:skipped_output, ["\t".a:match]) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -768,6 +768,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1488, +/**/ 1487, /**/ 1486,