diff options
Diffstat (limited to 'src/testdir/test_job_fails.vim')
-rw-r--r-- | src/testdir/test_job_fails.vim | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/testdir/test_job_fails.vim b/src/testdir/test_job_fails.vim index 432c4a343..1751d1d5b 100644 --- a/src/testdir/test_job_fails.vim +++ b/src/testdir/test_job_fails.vim @@ -2,16 +2,15 @@ " leaks under valgrind. That is because when fork/exec fails memory is not " freed. Since the process exits right away it's not a real leak. -source shared.vim +source check.vim func Test_job_start_fails() - if has('job') - let job = job_start('axdfxsdf') - if has('unix') - call WaitForAssert({-> assert_equal("dead", job_status(job))}) - else - call WaitForAssert({-> assert_equal("fail", job_status(job))}) - endif + CheckFeature job + let job = job_start('axdfxsdf') + if has('unix') + call WaitForAssert({-> assert_equal("dead", job_status(job))}) + else + call WaitForAssert({-> assert_equal("fail", job_status(job))}) endif endfunc |