# HG changeset patch # User Bram Moolenaar # Date 1584631804 -3600 # Node ID 8744a50560cbc6567a3ef71d86e5f5599115e0b1 # Parent f53f46722dceb548069fbe243b1acf97885a4bd0 patch 8.2.0410: channel test fails too often on slow Mac Commit: https://github.com/vim/vim/commit/3696839ef1165804159e28f50cb6113acc3d519d Author: Bram Moolenaar Date: Thu Mar 19 16:22:44 2020 +0100 patch 8.2.0410: channel test fails too often on slow Mac Problem: Channel test fails too often on slow Mac. Solution: Increase waiting time to 10 seconds. 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 @@ -1160,7 +1160,8 @@ func Test_out_cb() " Receive a json object split in pieces let g:Ch_outobj = '' call ch_sendraw(job, "echosplit [0, {\"one\": 1,| \"tw|o\": 2, \"three\": 3|}]\n") - call WaitForAssert({-> assert_equal({'one': 1, 'two': 2, 'three': 3}, g:Ch_outobj)}) + " For unknown reason this can be very slow on Mac. + call WaitForAssert({-> assert_equal({'one': 1, 'two': 2, 'three': 3}, g:Ch_outobj)}, 10000) finally call job_stop(job) endtry diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -739,6 +739,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 410, +/**/ 409, /**/ 408,