summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristian Brabandt <cb@256bit.org>2023-12-01 16:59:32 +0000
committerGitHub <noreply@github.com>2023-12-01 17:59:32 +0100
commit926c3f45a20c9c9667466f69d8c33ef8acb354ec (patch)
tree50124a905d6229106b4f17789290aafd33681e26 /src
parentfda700cb04612fe2f9301a9ba820309175decabf (diff)
CI: disable the test_terminal_resize() test for GH CI in GUI (#13603)
fixes: #13566 Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'src')
-rw-r--r--src/testdir/test_terminal2.vim4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/testdir/test_terminal2.vim b/src/testdir/test_terminal2.vim
index 6ce531ed45..b349867e9b 100644
--- a/src/testdir/test_terminal2.vim
+++ b/src/testdir/test_terminal2.vim
@@ -247,7 +247,11 @@ endfunc
" Resizing the terminal window caused an ml_get error.
" TODO: This does not reproduce the original problem.
+" TODO: This test starts timing out in Github CI Gui test, why????
func Test_terminal_resize()
+ if has('gui_running') && expand('$GITHUB_ACTIONS') ==# 'true'
+ throw 'Skipped: FIXME: this test times-out in Github Actions CI with GUI. Why?'
+ endif
set statusline=x
terminal
call assert_equal(2, winnr('$'))