# HG changeset patch # User Bram Moolenaar # Date 1560181506 -7200 # Node ID 84f308b126de99158cc10e9e26d14597cafe033d # Parent c3ca9d6be49ac21555e73b7d1f61de925c4e2006 patch 8.1.1516: time reported for a test measured wrong commit https://github.com/vim/vim/commit/640d4f0c97e686211dc4474b46a83e4435d883c0 Author: Bram Moolenaar Date: Mon Jun 10 17:43:46 2019 +0200 patch 8.1.1516: time reported for a test measured wrong Problem: Time reported for a test measured wrong. Solution: Move the computation to the end of RunTheTest(). (Ozaki Kiichi, closes #4520) diff --git a/src/testdir/runtest.vim b/src/testdir/runtest.vim --- a/src/testdir/runtest.vim +++ b/src/testdir/runtest.vim @@ -133,13 +133,6 @@ func RunTheTest(test) endtry endif - let message = 'Executed ' . a:test - if has('reltime') - let message ..= ' in ' .. reltimestr(reltime(func_start)) .. ' seconds' - endif - call add(s:messages, message) - let s:done += 1 - if a:test =~ 'Test_nocatch_' " Function handles errors itself. This avoids skipping commands after the " error. @@ -193,6 +186,13 @@ func RunTheTest(test) endwhile exe 'cd ' . save_cwd + + let message = 'Executed ' . a:test + if has('reltime') + let message ..= ' in ' .. reltimestr(reltime(func_start)) .. ' seconds' + endif + call add(s:messages, message) + let s:done += 1 endfunc func AfterTheTest() diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -778,6 +778,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1516, +/**/ 1515, /**/ 1514,