summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-11-21 15:14:51 +0100
committerBram Moolenaar <Bram@vim.org>2017-11-21 15:14:51 +0100
commit550586015232ecc4f68b3479fa8ba2cf81c76e7b (patch)
treee24c9cc4528b014ddee8b9358d8ed4365681511a
parentff5467965e3871d3dc0288416fcc6b1e2ba4f822 (diff)
downloadvim-git-550586015232ecc4f68b3479fa8ba2cf81c76e7b.tar.gz
patch 8.0.1329: when a flaky test fails it also often fails the second timev8.0.1329
Problem: When a flaky test fails it also often fails the second time. Solution: Sleep a couple of seconds before the second try.
-rw-r--r--src/testdir/runtest.vim4
-rw-r--r--src/version.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/testdir/runtest.vim b/src/testdir/runtest.vim
index 8eef1669f..c953d6d7c 100644
--- a/src/testdir/runtest.vim
+++ b/src/testdir/runtest.vim
@@ -286,6 +286,10 @@ for s:test in sort(s:tests)
call add(s:messages, 'Flaky test failed, running it again')
let first_run = v:errors
+ " Flakiness is often caused by the system being very busy. Sleep a couple
+ " of seconds to have a higher chance of succeeding the second time.
+ sleep 2
+
let v:errors = []
call RunTheTest(s:test)
if len(v:errors) > 0
diff --git a/src/version.c b/src/version.c
index d311de91b..93fb5cbfc 100644
--- a/src/version.c
+++ b/src/version.c
@@ -772,6 +772,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1329,
+/**/
1328,
/**/
1327,