# HG changeset patch # User Bram Moolenaar # Date 1554235205 -7200 # Node ID 1ab0d1f7807a1c6cb81a3ccc392e39cbfaa0beb3 # Parent 3477809e8e7fed4401f5e6300a896d8b26221976 patch 8.1.1101: signals test may fail in the GUI commit https://github.com/vim/vim/commit/690a905a0199f5ff733e5a12be9ba94ae6043ef4 Author: Bram Moolenaar Date: Tue Apr 2 21:45:41 2019 +0200 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 https://github.com/vim/vim/issues/4202) diff --git a/src/testdir/test_signals.vim b/src/testdir/test_signals.vim --- 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 --- a/src/version.c +++ b/src/version.c @@ -772,6 +772,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1101, +/**/ 1100, /**/ 1099,