Fix Vim's test_signals breaking GUI tests

The test should only be for terminal Vim, as in GUI we control resizing
using other mechanisms.
This commit is contained in:
Yee Cheng Chin
2019-04-01 02:17:31 -07:00
parent 9a97b86658
commit e488e91cf2
+5
View File
@@ -4,6 +4,11 @@ if !has('unix')
finish
endif
if has('gui_running')
" Signals only work for terminals, and won't work for GUI.
finish
endif
source shared.vim
" Test signal WINCH (window resize signal)