# HG changeset patch # User Bram Moolenaar # Date 1625776204 -7200 # Node ID 1a88fa97d347bcccdbbce553e68698269b8f8973 # Parent a69db15edff6262545c2b578e6f7563adeaee0e5 patch 8.2.3131: MS-Windows: ipv6 channel test is very flaky in the GUI Commit: https://github.com/vim/vim/commit/981217c11f92b37f2baa51492cbe12e85d0ea493 Author: Bram Moolenaar Date: Thu Jul 8 22:20:50 2021 +0200 patch 8.2.3131: MS-Windows: ipv6 channel test is very flaky in the GUI Problem: MS-Windows: ipv6 channel test is very flaky in the GUI. Solution: Skip the test. 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 @@ -252,6 +252,12 @@ endfunc func Test_communicate_ipv6() CheckIPv6 + + " FIXME: this test is very flaky on MS-Windows with the GUI + if has('gui_running') && has('win32') + throw 'Skipped: test is very flaky with MS-Windows in GUI' + endif + call Test_communicate() endfunc diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -756,6 +756,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3131, +/**/ 3130, /**/ 3129,