From e488e91cf25e44168102577ffb292a3ea9844e90 Mon Sep 17 00:00:00 2001 From: Yee Cheng Chin Date: Mon, 1 Apr 2019 02:17:31 -0700 Subject: [PATCH] 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. --- src/testdir/test_signals.vim | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/testdir/test_signals.vim b/src/testdir/test_signals.vim index 3fea76bd69..af7b88201a 100644 --- a/src/testdir/test_signals.vim +++ b/src/testdir/test_signals.vim @@ -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)