comparison src/testdir/runtest.vim @ 19715:e73167dd8cac v8.2.0414

patch 8.2.0414: channel connect_waittime() test is flaky Commit: https://github.com/vim/vim/commit/373a876d0cac5f8aff352e8ca42fdac88a1a7c3b Author: Bram Moolenaar <Bram@vim.org> Date: Thu Mar 19 19:44:32 2020 +0100 patch 8.2.0414: channel connect_waittime() test is flaky Problem: Channel connect_waittime() test is flaky. Solution: Set the test_is_flaky flag. Use test_is_flaky for more tests.
author Bram Moolenaar <Bram@vim.org>
date Thu, 19 Mar 2020 19:45:03 +0100
parents c3f506e24eab
children 2bd03926397a
comparison
equal deleted inserted replaced
19714:0e0ef0f4009f 19715:e73167dd8cac
313 endif 313 endif
314 314
315 " Names of flaky tests. 315 " Names of flaky tests.
316 let s:flaky_tests = [ 316 let s:flaky_tests = [
317 \ 'Test_autocmd_SafeState()', 317 \ 'Test_autocmd_SafeState()',
318 \ 'Test_call()',
319 \ 'Test_channel_handler()',
320 \ 'Test_client_server()', 318 \ 'Test_client_server()',
321 \ 'Test_close_and_exit_cb()', 319 \ 'Test_close_and_exit_cb()',
322 \ 'Test_close_callback()',
323 \ 'Test_close_handle()',
324 \ 'Test_close_lambda()',
325 \ 'Test_close_output_buffer()', 320 \ 'Test_close_output_buffer()',
326 \ 'Test_close_partial()',
327 \ 'Test_collapse_buffers()', 321 \ 'Test_collapse_buffers()',
328 \ 'Test_communicate()',
329 \ 'Test_cwd()', 322 \ 'Test_cwd()',
330 \ 'Test_diff_screen()', 323 \ 'Test_diff_screen()',
331 \ 'Test_exit_callback()',
332 \ 'Test_exit_callback_interval()', 324 \ 'Test_exit_callback_interval()',
333 \ 'Test_map_timeout_with_timer_interrupt()', 325 \ 'Test_map_timeout_with_timer_interrupt()',
334 \ 'Test_nb_basic()', 326 \ 'Test_nb_basic()',
335 \ 'Test_open_delay()',
336 \ 'Test_out_cb()', 327 \ 'Test_out_cb()',
337 \ 'Test_pipe_through_sort_all()', 328 \ 'Test_pipe_through_sort_all()',
338 \ 'Test_pipe_through_sort_some()', 329 \ 'Test_pipe_through_sort_some()',
339 \ 'Test_popup_and_window_resize()', 330 \ 'Test_popup_and_window_resize()',
340 \ 'Test_quoteplus()', 331 \ 'Test_quoteplus()',
341 \ 'Test_quotestar()', 332 \ 'Test_quotestar()',
342 \ 'Test_raw_one_time_callback()',
343 \ 'Test_reltime()', 333 \ 'Test_reltime()',
344 \ 'Test_server_crash()',
345 \ 'Test_state()', 334 \ 'Test_state()',
346 \ 'Test_terminal_ansicolors_default()',
347 \ 'Test_terminal_ansicolors_func()',
348 \ 'Test_terminal_ansicolors_global()',
349 \ 'Test_terminal_composing_unicode()', 335 \ 'Test_terminal_composing_unicode()',
350 \ 'Test_terminal_does_not_truncate_last_newlines()', 336 \ 'Test_terminal_does_not_truncate_last_newlines()',
351 \ 'Test_terminal_env()',
352 \ 'Test_terminal_hide_buffer()',
353 \ 'Test_terminal_make_change()',
354 \ 'Test_terminal_no_cmd()', 337 \ 'Test_terminal_no_cmd()',
355 \ 'Test_terminal_noblock()', 338 \ 'Test_terminal_noblock()',
356 \ 'Test_terminal_redir_file()', 339 \ 'Test_terminal_redir_file()',
357 \ 'Test_terminal_response_to_control_sequence()',
358 \ 'Test_terminal_scrollback()',
359 \ 'Test_terminal_split_quit()',
360 \ 'Test_terminal_termwinkey()',
361 \ 'Test_terminal_termwinsize_minimum()',
362 \ 'Test_terminal_termwinsize_option_fixed()',
363 \ 'Test_terminal_termwinsize_option_zero()',
364 \ 'Test_terminal_tmap()',
365 \ 'Test_terminal_wall()',
366 \ 'Test_terminal_wipe_buffer()',
367 \ 'Test_terminal_wqall()',
368 \ 'Test_termwinscroll()', 340 \ 'Test_termwinscroll()',
369 \ 'Test_timer_oneshot()', 341 \ 'Test_timer_oneshot()',
370 \ 'Test_timer_paused()', 342 \ 'Test_timer_paused()',
371 \ 'Test_timer_repeat_many()', 343 \ 'Test_timer_repeat_many()',
372 \ 'Test_timer_repeat_three()', 344 \ 'Test_timer_repeat_three()',
373 \ 'Test_timer_stop_all_in_callback()', 345 \ 'Test_timer_stop_all_in_callback()',
374 \ 'Test_timer_stop_in_callback()', 346 \ 'Test_timer_stop_in_callback()',
375 \ 'Test_two_channels()',
376 \ 'Test_unlet_handle()',
377 \ 'Test_timer_with_partial_callback()', 347 \ 'Test_timer_with_partial_callback()',
378 \ 'Test_zero_reply()',
379 \ 'Test_zz1_terminal_in_gui()',
380 \ ] 348 \ ]
381 349
382 " Locate Test_ functions and execute them. 350 " Locate Test_ functions and execute them.
383 redir @q 351 redir @q
384 silent function /^Test_ 352 silent function /^Test_