summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-09-09 15:09:59 +0100
committerBram Moolenaar <Bram@vim.org>2022-09-09 15:09:59 +0100
commit65258d36ddfab371c7982343efc9b2533ba39075 (patch)
tree4c9c85ace4083860a96345235673473b6c9001e7
parentae04a6049b3f0e30a671966ed2dda1979e0b5f20 (diff)
downloadvim-git-65258d36ddfab371c7982343efc9b2533ba39075.tar.gz
patch 9.0.0426: failed flaky tests reports only start timev9.0.0426
Problem: Failed flaky tests reports only start time. Solution: Also report the end time.
-rw-r--r--src/testdir/runtest.vim3
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/src/testdir/runtest.vim b/src/testdir/runtest.vim
index 72a8f989f..68c3dd3ef 100644
--- a/src/testdir/runtest.vim
+++ b/src/testdir/runtest.vim
@@ -479,7 +479,8 @@ for g:testfunc in sort(s:tests)
call add(s:messages, 'Found errors in ' .. g:testfunc .. ':')
call extend(s:messages, v:errors)
- call add(total_errors, starttime .. ' Run ' .. g:run_nr .. ':')
+ let endtime = strftime("%H:%M:%S")
+ call add(total_errors, $'Run {g:run_nr}, {starttime} - {endtime}:')
call extend(total_errors, v:errors)
if g:run_nr >= 5 || prev_error == v:errors[0]
diff --git a/src/version.c b/src/version.c
index 34fa8ef22..14767813e 100644
--- a/src/version.c
+++ b/src/version.c
@@ -704,6 +704,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 426,
+/**/
425,
/**/
424,