changeset 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 34be4ed9ef36
children 186836c6f068
files src/testdir/runtest.vim src/version.c
diffstat 2 files changed, 8 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/runtest.vim
+++ b/src/testdir/runtest.vim
@@ -144,7 +144,12 @@ else
 endif
 
 " Names of flaky tests.
-let s:flaky = ['Test_reltime()', 'Test_nb_basic()', 'Test_communicate()']
+let s:flaky = [
+      \ 'Test_reltime()',
+      \ 'Test_nb_basic()',
+      \ 'Test_communicate()'
+      \ 'Test_pipe_through_sort_some()'
+      \ ]
 
 " Locate Test_ functions and execute them.
 set nomore
--- a/src/version.c
+++ b/src/version.c
@@ -764,6 +764,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    2364,
+/**/
     2363,
 /**/
     2362,