changeset 16192:1ab0d1f7807a v8.1.1101

patch 8.1.1101: signals test may fail in the GUI commit https://github.com/vim/vim/commit/690a905a0199f5ff733e5a12be9ba94ae6043ef4 Author: Bram Moolenaar <Bram@vim.org> 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)
author Bram Moolenaar <Bram@vim.org>
date Tue, 02 Apr 2019 22:00:05 +0200
parents 3477809e8e7f
children 1f6f8e8da3c2
files src/testdir/test_signals.vim src/version.c
diffstat 2 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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)
--- 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,