1
0
forked from aniani/vim

patch 8.0.0479: remote_peek() is not tested

Problem:    remote_peek() is not tested.
Solution:   Add a test.
This commit is contained in:
Bram Moolenaar
2017-03-18 20:45:05 +01:00
parent 37175409d7
commit 6caf606b14
3 changed files with 25 additions and 0 deletions

View File

@@ -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)