# HG changeset patch # User Bram Moolenaar # Date 1592498704 -7200 # Node ID 7d0fe945278c87a179bc9c418492b005f154ea0e # Parent b3ace9daf20bf22842ffe99d1344bd5713b00081 patch 8.2.1002: test may fail when run directly Commit: https://github.com/vim/vim/commit/ceb2e7751089bd417c6250d63e28616483b5796b Author: Bram Moolenaar Date: Thu Jun 18 18:33:59 2020 +0200 patch 8.2.1002: test may fail when run directly Problem: Test may fail when run directly. Solution: Check if g:run_nr exists. (Christian Brabandt, closes https://github.com/vim/vim/issues/6285) diff --git a/src/testdir/term_util.vim b/src/testdir/term_util.vim --- a/src/testdir/term_util.vim +++ b/src/testdir/term_util.vim @@ -28,10 +28,12 @@ endfunc " The second argument is the minimum time to wait in msec, 10 if omitted. func TermWait(buf, ...) let wait_time = a:0 ? a:1 : 10 - if g:run_nr == 2 - let wait_time *= 4 - elseif g:run_nr > 2 - let wait_time *= 10 + if exists('g:run_nr') + if g:run_nr == 2 + let wait_time *= 4 + elseif g:run_nr > 2 + let wait_time *= 10 + endif endif call term_wait(a:buf, wait_time) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1002, +/**/ 1001, /**/ 1000,