Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/testdir/test_channel.vim
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ if !has('channel')
finish
endif

if has('gui_macvim')
" MacVim's currently doesn't always pass these tests. Disable these tests
" for now before a more proper fix is implemented.
finish
endif

source shared.vim

let s:python = PythonProg()
Expand Down
7 changes: 7 additions & 0 deletions src/testdir/test_timers.vim
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ if !has('timers')
finish
endif

if has('gui_macvim') && has('gui_running')
" MacVim's GUI currently doesn't always pass these tests. Disable these
" tests for now when testing in GUI mode before a more proper fix is
" implemented.
finish
endif

source shared.vim
source screendump.vim

Expand Down