Skip to content

Commit 206c2a6

Browse files
committed
patch 8.2.2436: Vim9 script test is a bit flaky
Problem: Vim9 script test is a bit flaky. Solution: Wait longer for exit callback.
1 parent 3445320 commit 206c2a6

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

src/testdir/test_vim9_script.vim

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3278,7 +3278,8 @@ def Test_no_unknown_error_after_error()
32783278
while job_status(myjob) == 'run'
32793279
sleep 10m
32803280
endwhile
3281-
sleep 10m
3281+
# wait for Exit_cb() to be called
3282+
sleep 100m
32823283
END
32833284
writefile(lines, 'Xdef')
32843285
assert_fails('so Xdef', ['E684:', 'E1012:'])

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -750,6 +750,8 @@ static char *(features[]) =
750750

751751
static int included_patches[] =
752752
{ /* Add new patch number below this line */
753+
/**/
754+
2436,
753755
/**/
754756
2435,
755757
/**/

0 commit comments

Comments
 (0)