# HG changeset patch # User Bram Moolenaar # Date 1639741505 -3600 # Node ID 95a267994eac1bd702cc21d440a215c65c85dc63 # Parent 657addfd864542b8920f13ff692c0d74f34a87e4 patch 8.2.3834: Test_out_cb often fails on Mac Commit: https://github.com/vim/vim/commit/deda6441e457072df39cdc8744dcd685d77fa273 Author: Bram Moolenaar Date: Fri Dec 17 11:44:33 2021 +0000 patch 8.2.3834: Test_out_cb often fails on Mac Problem: Test_out_cb often fails on Mac. Solution: Increase the timeout with every retry. diff --git a/src/testdir/test_channel.vim b/src/testdir/test_channel.vim --- a/src/testdir/test_channel.vim +++ b/src/testdir/test_channel.vim @@ -1239,10 +1239,15 @@ func Test_out_cb() let g:Ch_outobj = '' call ch_sendraw(job, "echosplit [0, {\"one\": 1,| \"tw|o\": 2, \"three\": 3|}]\n") " For unknown reasons this can be very slow on Mac. - if has('mac') + " Increase the timeout on every run. + if g:run_nr == 1 + let timeout = 5000 + elseif g:run_nr == 2 + let timeout = 10000 + elseif g:run_nr == 3 let timeout = 20000 else - let timeout = 5000 + let timeout = 40000 endif call WaitForAssert({-> assert_equal({'one': 1, 'two': 2, 'three': 3}, g:Ch_outobj)}, timeout) finally diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3834, +/**/ 3833, /**/ 3832,