Skip to content

Commit e488e91

Browse files
committed
Fix Vim's test_signals breaking GUI tests
The test should only be for terminal Vim, as in GUI we control resizing using other mechanisms.
1 parent 9a97b86 commit e488e91

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/testdir/test_signals.vim

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ if !has('unix')
44
finish
55
endif
66

7+
if has('gui_running')
8+
" Signals only work for terminals, and won't work for GUI.
9+
finish
10+
endif
11+
712
source shared.vim
813

914
" Test signal WINCH (window resize signal)

0 commit comments

Comments
 (0)