From 7e63bbe4ecd3c552c984f0499576db8f7c291d08 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Mon, 21 Dec 2020 23:59:58 -0500 Subject: 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 vim/vim#4202) https://github.com/vim/vim/commit/690a905a0199f5ff733e5a12be9ba94ae6043ef4 --- src/nvim/testdir/test_signals.vim | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src') diff --git a/src/nvim/testdir/test_signals.vim b/src/nvim/testdir/test_signals.vim index cdea278fa0..79cbea3e7d 100644 --- a/src/nvim/testdir/test_signals.vim +++ b/src/nvim/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) -- cgit