comparison src/testdir/test_channel.vim @ 25190:1a88fa97d347 v8.2.3131

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 <Bram@vim.org> 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.
author Bram Moolenaar <Bram@vim.org>
date Thu, 08 Jul 2021 22:30:04 +0200
parents 73503bafb3bf
children 8b3ff02b2ff8
comparison
equal deleted inserted replaced
25189:a69db15edff6 25190:1a88fa97d347
250 call s:run_server('Ch_communicate') 250 call s:run_server('Ch_communicate')
251 endfunc 251 endfunc
252 252
253 func Test_communicate_ipv6() 253 func Test_communicate_ipv6()
254 CheckIPv6 254 CheckIPv6
255
256 " FIXME: this test is very flaky on MS-Windows with the GUI
257 if has('gui_running') && has('win32')
258 throw 'Skipped: test is very flaky with MS-Windows in GUI'
259 endif
260
255 call Test_communicate() 261 call Test_communicate()
256 endfunc 262 endfunc
257 263
258 " Test that we can open two channels. 264 " Test that we can open two channels.
259 func Ch_two_channels(port) 265 func Ch_two_channels(port)