From: Bram Moolenaar Date: Mon, 10 Jun 2019 15:43:46 +0000 (+0200) Subject: patch 8.1.1516: time reported for a test measured wrong X-Git-Tag: v8.1.1516 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=640d4f0c97e686211dc4474b46a83e4435d883c0;p=vim 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 index f855f6800..f81c76df1 100644 --- 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 index b493377d4..c4c8e3fc1 100644 --- a/src/version.c +++ b/src/version.c @@ -777,6 +777,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1516, /**/ 1515, /**/