diff src/testdir/runtest.vim @ 11185:eb050472e4b4 v8.0.0479

patch 8.0.0479: remote_peek() is not tested commit https://github.com/vim/vim/commit/6caf606b144bbe2bf3ac515a194f5ff18fdfd331 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 18 20:45:05 2017 +0100 patch 8.0.0479: remote_peek() is not tested Problem: remote_peek() is not tested. Solution: Add a test.
author Christian Brabandt <cb@256bit.org>
date Sat, 18 Mar 2017 21:00:04 +0100
parents 13544aa85dc0
children 515db00c4676
line wrap: on
line diff
--- a/src/testdir/runtest.vim
+++ b/src/testdir/runtest.vim
@@ -247,6 +247,8 @@ for s:test in sort(s:tests)
   call RunTheTest(s:test)
 
   if len(v:errors) > 0 && index(s:flaky, s:test) >= 0
+    call add(s:messages, 'Found errors in ' . s:test . ':')
+    call extend(s:messages, v:errors)
     call add(s:messages, 'Flaky test failed, running it again')
     let v:errors = []
     call RunTheTest(s:test)