comparison src/testdir/runtest.vim @ 10189:2392e065efea v7.4.2364

commit https://github.com/vim/vim/commit/e1c8c7a6742be6072290f9aa54ae358060d9c42f Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 11 16:48:50 2016 +0200 patch 7.4.2364 Problem: Sort test sometimes fails. Solution: Add it to the list of flaky tests.
author Christian Brabandt <cb@256bit.org>
date Sun, 11 Sep 2016 17:00:08 +0200
parents 26441931dad7
children 66658966ac2e
comparison
equal deleted inserted replaced
10188:34be4ed9ef36 10189:2392e065efea
142 call add(s:errors, 'Caught exception: ' . v:exception . ' @ ' . v:throwpoint) 142 call add(s:errors, 'Caught exception: ' . v:exception . ' @ ' . v:throwpoint)
143 endtry 143 endtry
144 endif 144 endif
145 145
146 " Names of flaky tests. 146 " Names of flaky tests.
147 let s:flaky = ['Test_reltime()', 'Test_nb_basic()', 'Test_communicate()'] 147 let s:flaky = [
148 \ 'Test_reltime()',
149 \ 'Test_nb_basic()',
150 \ 'Test_communicate()'
151 \ 'Test_pipe_through_sort_some()'
152 \ ]
148 153
149 " Locate Test_ functions and execute them. 154 " Locate Test_ functions and execute them.
150 set nomore 155 set nomore
151 redir @q 156 redir @q
152 silent function /^Test_ 157 silent function /^Test_