Mercurial > vim
changeset 25208:8b3ff02b2ff8 v8.2.3140
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 <Bram@vim.org>
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.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 10 Jul 2021 22:30:04 +0200 |
parents | 6647023dc0aa |
children | dda30b95f9bc |
files | src/testdir/test_channel.vim src/version.c |
diffstat | 2 files changed, 5 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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()