]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
CI: disable the test_terminal_resize() test for GH CI in GUI (#13603)
authorChristian Brabandt <cb@256bit.org>
Fri, 1 Dec 2023 16:59:32 +0000 (16:59 +0000)
committerGitHub <noreply@github.com>
Fri, 1 Dec 2023 16:59:32 +0000 (17:59 +0100)
fixes: #13566

Signed-off-by: Christian Brabandt <cb@256bit.org>
src/testdir/test_terminal2.vim

index 6ce531ed4542c95a347a103f3c077f2b0468c012..b349867e9b76f819de5cc1fe078c2c0c6da28ffd 100644 (file)
@@ -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('$'))