changeset 33858:af382e6903ac

CI: disable the test_terminal_resize() test for GH CI in GUI (#13603) Commit: https://github.com/vim/vim/commit/926c3f45a20c9c9667466f69d8c33ef8acb354ec Author: Christian Brabandt <cb@256bit.org> Date: Fri Dec 1 16:59:32 2023 +0000 CI: disable the test_terminal_resize() test for GH CI in GUI (https://github.com/vim/vim/issues/13603) fixes: https://github.com/vim/vim/issues/13566 Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Fri, 01 Dec 2023 18:00:05 +0100
parents 8ced1e26de43
children f566fe683cad
files src/testdir/test_terminal2.vim
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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('$'))