# HG changeset patch # User Christian Brabandt # Date 1460129406 -7200 # Node ID be36707a661a6e2155a5713deccf620d344200e5 # Parent 55416dd20a16091c546262d6917223fe446d90a8 commit https://github.com/vim/vim/commit/9e4043757cd2fc18d071fdd98abf297d74878943 Author: Bram Moolenaar Date: Fri Apr 8 17:25:19 2016 +0200 patch 7.4.1720 Problem: Tests fail without the job feature. Solution: Skip tests when the job feature is not present. diff --git a/src/testdir/test_partial.vim b/src/testdir/test_partial.vim --- a/src/testdir/test_partial.vim +++ b/src/testdir/test_partial.vim @@ -243,13 +243,17 @@ func Ignored(job1, job2, status) endfunc func Test_cycle_partial_job() - let job = job_start('echo') - call job_setoptions(job, {'exit_cb': function('Ignored', [job])}) - unlet job + if has('job') + let job = job_start('echo') + call job_setoptions(job, {'exit_cb': function('Ignored', [job])}) + unlet job + endif endfunc func Test_ref_job_partial_dict() - let g:ref_job = job_start('echo') - let d = {'a': 'b'} - call job_setoptions(g:ref_job, {'exit_cb': function('string', [], d)}) + if has('job') + let g:ref_job = job_start('echo') + let d = {'a': 'b'} + call job_setoptions(g:ref_job, {'exit_cb': function('string', [], d)}) + endif endfunc diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -749,6 +749,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1720, +/**/ 1719, /**/ 1718,