Mercurial > vim
changeset 17910:f084f846442a v8.1.1951
patch 8.1.1951: mouse double click test is a bit flaky
Commit: https://github.com/vim/vim/commit/f1699968baf3619a4147b44c891ba4a0985e7656
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Aug 31 17:48:19 2019 +0200
patch 8.1.1951: mouse double click test is a bit flaky
Problem: Mouse double click test is a bit flaky.
Solution: Add to list of flaky tests. Update a couple of comments.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 31 Aug 2019 18:00:03 +0200 |
parents | cc953757ed2a |
children | 6ec211f84436 |
files | src/testdir/runtest.vim src/testdir/shared.vim src/testdir/test_substitute.vim src/version.c |
diffstat | 4 files changed, 5 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/testdir/runtest.vim +++ b/src/testdir/runtest.vim @@ -333,6 +333,7 @@ let s:flaky_tests = [ \ 'Test_raw_one_time_callback()', \ 'Test_reltime()', \ 'Test_server_crash()', + \ 'Test_term_mouse_double_click_to_create_tab', \ 'Test_terminal_ansicolors_default()', \ 'Test_terminal_ansicolors_func()', \ 'Test_terminal_ansicolors_global()',
--- a/src/testdir/shared.vim +++ b/src/testdir/shared.vim @@ -272,7 +272,7 @@ func GetVimCommand(...) return cmd endfunc -" Get the command to run Vim, with --clean. +" Get the command to run Vim, with --clean instead of "-u NONE". func GetVimCommandClean() let cmd = GetVimCommand() let cmd = substitute(cmd, '-u NONE', '--clean', '')