# HG changeset patch # User Bram Moolenaar # Date 1588869003 -7200 # Node ID cae01dabd78e679e3f2170a7bf9781d10ca3fc3e # Parent 49fa1e49d5f56ad0a7d32a23aba285ae2a334423 patch 8.2.0710: Netbeans test sometimes fails Commit: https://github.com/vim/vim/commit/4a070cc82e00618db279526797564cb2b4e9b060 Author: Bram Moolenaar Date: Thu May 7 18:16:35 2020 +0200 patch 8.2.0710: Netbeans test sometimes fails Problem: Netbeans test sometimes fails. Solution: Mark any test using an external command as flaky. diff --git a/src/testdir/shared.vim b/src/testdir/shared.vim --- a/src/testdir/shared.vim +++ b/src/testdir/shared.vim @@ -36,6 +36,9 @@ endfunc " Run "cmd". Returns the job if using a job. func RunCommand(cmd) + " Running an external command can occasionally be slow or fail. + let g:test_is_flaky = 1 + let job = 0 if has('job') let job = job_start(a:cmd, {"stoponexit": "hup"}) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -747,6 +747,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 710, +/**/ 709, /**/ 708,