# HG changeset patch # User Bram Moolenaar # Date 1574357403 -3600 # Node ID a0bd0a022bd489eedceb834de2808d98377b9f20 # Parent bb7abcd7d4175792913fea525b4f48c60de09055 patch 8.1.2329: mouse multiple click test is a bit flaky Commit: https://github.com/vim/vim/commit/44f0bd878ab6525eb50f2e05a13c0854164cdec2 Author: Bram Moolenaar Date: Thu Nov 21 18:27:01 2019 +0100 patch 8.1.2329: mouse multiple click test is a bit flaky Problem: Mouse multiple click test is a bit flaky. Solution: Add it to the list of flaky tests. diff --git a/src/testdir/runtest.vim b/src/testdir/runtest.vim --- a/src/testdir/runtest.vim +++ b/src/testdir/runtest.vim @@ -336,14 +336,15 @@ let s:flaky_tests = [ \ 'Test_out_cb()', \ 'Test_pipe_through_sort_all()', \ 'Test_pipe_through_sort_some()', + \ 'Test_popup_and_window_resize()', \ 'Test_quoteplus()', \ 'Test_quotestar()', \ 'Test_raw_one_time_callback()', \ 'Test_reltime()', - \ 'Test_popup_and_window_resize()', \ 'Test_server_crash()', \ 'Test_state()', \ 'Test_term_mouse_double_click_to_create_tab()', + \ 'Test_term_mouse_multiple_clicks_to_visually_select()', \ 'Test_terminal_ansicolors_default()', \ 'Test_terminal_ansicolors_func()', \ 'Test_terminal_ansicolors_global()', diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -738,6 +738,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2329, +/**/ 2328, /**/ 2327,