From: Ken Takata Date: Mon, 15 Jul 2024 17:52:25 +0000 (+0200) Subject: patch 9.1.0587: tests: Test_gui_lowlevel_keyevent is still flaky X-Git-Tag: v9.1.0587^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=490c1daa2484772d78d059f6eed91bd6f4fd0f39;p=thirdparty%2Fvim.git patch 9.1.0587: tests: Test_gui_lowlevel_keyevent is still flaky Problem: tests: Test_gui_lowlevel_keyevent is still flaky (after v9.1.0571) Solution: skip generating key event for Ctrl-C, remove the test_is_flaky variable again (Ken Takata) v9.1.0571 was not enough. Ctrl-C interruption may occur before the preceding events are processed. Exclude Ctrl-C to avoid the flakiness. closes: #15224 Signed-off-by: Ken Takata Signed-off-by: Christian Brabandt --- diff --git a/src/testdir/test_gui.vim b/src/testdir/test_gui.vim index eefebff48b..ae65310627 100644 --- a/src/testdir/test_gui.vim +++ b/src/testdir/test_gui.vim @@ -1706,10 +1706,10 @@ endfunc func Test_gui_lowlevel_keyevent() CheckMSWindows new - let g:test_is_flaky = 1 " Test for to keys - for kc in range(65, 90) + " FIXME: is excluded for now. It makes the test flaky. + for kc in range(65, 66) + range(68, 90) call SendKeys([0x11, kc]) try let ch = getcharstr() diff --git a/src/version.c b/src/version.c index 428cd04f27..9ce9c8f7af 100644 --- a/src/version.c +++ b/src/version.c @@ -704,6 +704,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 587, /**/ 586, /**/