summaryrefslogtreecommitdiffstats
path: root/src/testdir/runtest.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-08-16 11:26:06 +0200
committerBram Moolenaar <Bram@vim.org>2019-08-16 11:26:06 +0200
commit9a2fddcf04192a643dc97601d689c27f5bc5184f (patch)
treefcbc7786d67d7ee6a8b7efaaeb5820d777d0c7d5 /src/testdir/runtest.vim
parent973d5304a44c974e74e43c3790f8919b7d4193b4 (diff)
patch 8.1.1855: another failing timer testv8.1.1855
Problem: Another failing timer test. Solution: Assert that timers are finished by the end of the test. Rename test functions to make them easier to find.
Diffstat (limited to 'src/testdir/runtest.vim')
-rw-r--r--src/testdir/runtest.vim13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/testdir/runtest.vim b/src/testdir/runtest.vim
index 7530bb9d5e..32c22fa335 100644
--- a/src/testdir/runtest.vim
+++ b/src/testdir/runtest.vim
@@ -323,20 +323,15 @@ let s:flaky_tests = [
\ 'Test_exit_callback()',
\ 'Test_exit_callback_interval()',
\ 'Test_nb_basic()',
- \ 'Test_oneshot()',
\ 'Test_open_delay()',
\ 'Test_out_cb()',
- \ 'Test_paused()',
\ 'Test_pipe_through_sort_all()',
\ 'Test_pipe_through_sort_some()',
\ 'Test_quoteplus()',
\ 'Test_quotestar()',
\ 'Test_raw_one_time_callback()',
\ 'Test_reltime()',
- \ 'Test_repeat_many()',
- \ 'Test_repeat_three()',
\ 'Test_server_crash()',
- \ 'Test_stop_all_in_callback()',
\ 'Test_terminal_ansicolors_default()',
\ 'Test_terminal_ansicolors_func()',
\ 'Test_terminal_ansicolors_global()',
@@ -359,9 +354,15 @@ let s:flaky_tests = [
\ 'Test_terminal_wall()',
\ 'Test_terminal_wipe_buffer()',
\ 'Test_terminal_wqall()',
+ \ 'Test_timer_oneshot()',
+ \ 'Test_timer_paused()',
+ \ 'Test_timer_repeat_many()',
+ \ 'Test_timer_repeat_three()',
+ \ 'Test_timer_stop_all_in_callback()',
+ \ 'Test_timer_stop_in_callback()',
\ 'Test_two_channels()',
\ 'Test_unlet_handle()',
- \ 'Test_with_partial_callback()',
+ \ 'Test_timer_with_partial_callback()',
\ 'Test_zero_reply()',
\ 'Test_zz1_terminal_in_gui()',
\ ]