diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-12-02 16:38:12 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-12-02 16:38:12 +0100 |
commit | 24820691e6ba9dae41ef16a3d3e55589843b34f4 (patch) | |
tree | a313908795b56c5069af29f32ba0272afc2869d5 /src/testdir/runtest.vim | |
parent | 22044dc31788d9f1c2da7725269884d9923b4795 (diff) | |
download | vim-git-24820691e6ba9dae41ef16a3d3e55589843b34f4.tar.gz |
patch 8.0.1365: when one channel test fails others fail as wellv8.0.1365
Problem: When one channel test fails others fail as well.
Solution: Stop the job after a failure. Also add a couple of tests to the
list of flaky tests.
Diffstat (limited to 'src/testdir/runtest.vim')
-rw-r--r-- | src/testdir/runtest.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/testdir/runtest.vim b/src/testdir/runtest.vim index c953d6d7c..8a4a9b7a0 100644 --- a/src/testdir/runtest.vim +++ b/src/testdir/runtest.vim @@ -251,6 +251,7 @@ let s:flaky = [ \ 'Test_exit_callback_interval()', \ 'Test_nb_basic()', \ 'Test_oneshot()', + \ 'Test_paused()', \ 'Test_pipe_through_sort_all()', \ 'Test_pipe_through_sort_some()', \ 'Test_quoteplus()', @@ -259,6 +260,7 @@ let s:flaky = [ \ 'Test_terminal_composing_unicode()', \ 'Test_terminal_noblock()', \ 'Test_terminal_redir_file()', + \ 'Test_terminal_tmap()', \ 'Test_with_partial_callback()', \ ] |