From: Bram Moolenaar Date: Tue, 2 Apr 2019 19:45:41 +0000 (+0200) Subject: patch 8.1.1101: signals test may fail in the GUI X-Git-Tag: v8.1.1101 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=690a905a0199f5ff733e5a12be9ba94ae6043ef4;p=vim patch 8.1.1101: signals test may fail in the GUI Problem: Signals test may fail in the GUI. Solution: Skip the test for the GUI. (Yee Checng Chin, closes #4202) --- diff --git a/src/testdir/test_signals.vim b/src/testdir/test_signals.vim index 3fea76bd6..af7b88201 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) diff --git a/src/version.c b/src/version.c index bb112db46..fe7112807 100644 --- a/src/version.c +++ b/src/version.c @@ -771,6 +771,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1101, /**/ 1100, /**/