comparison 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
comparison
equal deleted inserted replaced
11184:eaef72f5eac1 11185:eb050472e4b4
245 " Execute the tests in alphabetical order. 245 " Execute the tests in alphabetical order.
246 for s:test in sort(s:tests) 246 for s:test in sort(s:tests)
247 call RunTheTest(s:test) 247 call RunTheTest(s:test)
248 248
249 if len(v:errors) > 0 && index(s:flaky, s:test) >= 0 249 if len(v:errors) > 0 && index(s:flaky, s:test) >= 0
250 call add(s:messages, 'Found errors in ' . s:test . ':')
251 call extend(s:messages, v:errors)
250 call add(s:messages, 'Flaky test failed, running it again') 252 call add(s:messages, 'Flaky test failed, running it again')
251 let v:errors = [] 253 let v:errors = []
252 call RunTheTest(s:test) 254 call RunTheTest(s:test)
253 endif 255 endif
254 256