summaryrefslogtreecommitdiff
path: root/src/testdir/test_channel.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-02-16 14:07:40 +0100
committerBram Moolenaar <Bram@vim.org>2016-02-16 14:07:40 +0100
commitf8df7addc5f741c16fa2a458f8777ac1fdf2e01e (patch)
tree44ba2032c8557fa75e24d03dab73e8bc99fdd967 /src/testdir/test_channel.vim
parentacd58ef676bb9559ac0f635f66b62f4602929c87 (diff)
downloadvim-git-f8df7addc5f741c16fa2a458f8777ac1fdf2e01e.tar.gz
patch 7.4.1333v7.4.1333
Problem: Channel test fails on non-darwin builds. Solution: Add the "osx" feature and test for that. (Kazunobu Kuriyama)
Diffstat (limited to 'src/testdir/test_channel.vim')
-rw-r--r--src/testdir/test_channel.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test_channel.vim b/src/testdir/test_channel.vim
index b6c986006..62b5c89b4 100644
--- a/src/testdir/test_channel.vim
+++ b/src/testdir/test_channel.vim
@@ -28,7 +28,7 @@ else
finish
endif
-let s:chopt = has('macunix') ? {'waittime' : 1} : {}
+let s:chopt = has('osx') ? {'waittime' : 1} : {}
" Run "testfunc" after sarting the server and stop the server afterwards.
func s:run_server(testfunc)