diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-04-02 21:45:41 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-04-02 21:45:41 +0200 |
commit | 690a905a0199f5ff733e5a12be9ba94ae6043ef4 (patch) | |
tree | 2bc8e7c6cb1c11b03f9dd2956fdf6b344594d3a9 | |
parent | fd700393becfc35b6fad305221265b87a8564ddb (diff) | |
download | vim-git-690a905a0199f5ff733e5a12be9ba94ae6043ef4.tar.gz |
patch 8.1.1101: signals test may fail in the GUIv8.1.1101
Problem: Signals test may fail in the GUI.
Solution: Skip the test for the GUI. (Yee Checng Chin, closes #4202)
-rw-r--r-- | src/testdir/test_signals.vim | 5 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 7 insertions, 0 deletions
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 @@ -772,6 +772,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1101, +/**/ 1100, /**/ 1099, |