From: Christian Brabandt Date: Mon, 6 Mar 2023 15:29:29 +0000 (+0000) Subject: patch 9.0.1387: scrollbar test sporadically fails X-Git-Tag: v9.0.1387 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cf3c1ca276aa8f9fada7b7cd0197bbb0f91e0950;p=thirdparty%2Fvim.git patch 9.0.1387: scrollbar test sporadically fails Problem: Scrollbar test sporadically fails. Solution: Mark the scrollbar test as flaky. (Christian Brabandt, closes #12113) --- diff --git a/src/testdir/test_gui.vim b/src/testdir/test_gui.vim index 6b5e12c2f3..809dd3579c 100644 --- a/src/testdir/test_gui.vim +++ b/src/testdir/test_gui.vim @@ -718,8 +718,11 @@ func Test_set_guioptions() endfunc func Test_scrollbars() - new + " this test sometimes fails on CI + let g:test_is_flaky = 1 + " buffer with 200 lines + new call setline(1, repeat(['one', 'two'], 100)) set guioptions+=rlb diff --git a/src/version.c b/src/version.c index 994ddb9a8c..e590919f89 100644 --- a/src/version.c +++ b/src/version.c @@ -695,6 +695,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1387, /**/ 1386, /**/