diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-07-10 22:21:40 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-07-10 22:21:40 +0200 |
commit | 482d2f37a5ce43157ab1e22c26f389770d0c20cf (patch) | |
tree | 5ce426f145459fb08ecce24d111b856ca277bd3e /src/testdir/test_channel.vim | |
parent | a2438132a675be4dde3acbdf03ba1fdb2f09427c (diff) | |
download | vim-git-482d2f37a5ce43157ab1e22c26f389770d0c20cf.tar.gz |
patch 8.2.3140: MS-Windows: ipv6 channel test is very flaky also without GUIv8.2.3140
Problem: MS-Windows: ipv6 channel test is very flaky also without the GUI.
Solution: Skip the test also without the GUI.
Diffstat (limited to 'src/testdir/test_channel.vim')
-rw-r--r-- | src/testdir/test_channel.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/testdir/test_channel.vim b/src/testdir/test_channel.vim index f88cba004..f2c0d17fc 100644 --- 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() |