# HG changeset patch # User Bram Moolenaar # Date 1625949004 -7200 # Node ID 8b3ff02b2ff806e8e788a3bb28103cad073b1e85 # Parent 6647023dc0aa6c9ead14dc498f6280a06d0075eb patch 8.2.3140: MS-Windows: ipv6 channel test is very flaky also without GUI Commit: https://github.com/vim/vim/commit/482d2f37a5ce43157ab1e22c26f389770d0c20cf Author: Bram Moolenaar Date: Sat Jul 10 22:21:40 2021 +0200 patch 8.2.3140: MS-Windows: ipv6 channel test is very flaky also without GUI Problem: MS-Windows: ipv6 channel test is very flaky also without the GUI. Solution: Skip the test also without the GUI. 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 @@ -253,9 +253,9 @@ 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' + " FIXME: this test is very flaky on MS-Windows + if has('win32') + throw 'Skipped: test is very flaky with MS-Windows' endif call Test_communicate() 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 */ /**/ + 3140, +/**/ 3139, /**/ 3138,