From cf3c1ca276aa8f9fada7b7cd0197bbb0f91e0950 Mon Sep 17 00:00:00 2001 From: Christian Brabandt Date: Mon, 6 Mar 2023 15:29:29 +0000 Subject: patch 9.0.1387: scrollbar test sporadically fails Problem: Scrollbar test sporadically fails. Solution: Mark the scrollbar test as flaky. (Christian Brabandt, closes #12113) --- src/testdir/test_gui.vim | 5 ++++- src/version.c | 2 ++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/testdir/test_gui.vim b/src/testdir/test_gui.vim index 6b5e12c2f..809dd3579 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 994ddb9a8..e590919f8 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, /**/ -- cgit v1.2.1