summaryrefslogtreecommitdiffstats
path: root/src/testdir
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-02-04 22:09:48 +0100
committerBram Moolenaar <Bram@vim.org>2016-02-04 22:09:48 +0100
commita8343c1808f2f268282f3030ce4adaf22e8ade54 (patch)
treecf853bc590793f2dd2bec4b62ff08f9efa30c80a /src/testdir
parent3fc3e14282c182c046d1335f3d576bc0eeb605c5 (diff)
patch 7.4.1260v7.4.1260
Problem: The channel feature doesn't work on Win32 GUI. Solution: Use WSAGetLastError(). (Ken Takata)
Diffstat (limited to 'src/testdir')
-rw-r--r--src/testdir/test_channel.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testdir/test_channel.vim b/src/testdir/test_channel.vim
index f4c8e575b4..a819961536 100644
--- a/src/testdir/test_channel.vim
+++ b/src/testdir/test_channel.vim
@@ -6,13 +6,13 @@ if !has('channel')
endif
" This test requires the Python command to run the test server.
-" This most likely only works on Unix and Windows console.
+" This most likely only works on Unix and Windows.
if has('unix')
" We also need the pkill command to make sure the server can be stopped.
if !executable('python') || !executable('pkill')
finish
endif
-elseif has('win32') && !has('gui_win32')
+elseif has('win32')
" Use Python Launcher for Windows (py.exe).
if !executable('py')
finish