view src/testdir/test_job_fails.vim @ 28879:73d490493dc6 v8.2.4962

patch 8.2.4962: files show up in git status Commit: https://github.com/vim/vim/commit/5a8fad32ea9c075f045b37d6c7739891d458f82b Author: shane.xb.qian <shane.qian@foxmail.com> Date: Mon May 16 11:14:09 2022 +0100 patch 8.2.4962: files show up in git status Problem: Files show up in git status. Solution: Adjust the list of ignored files. Clean up more test files. (Shane xb Qian, closes #9929)
author Bram Moolenaar <Bram@vim.org>
date Mon, 16 May 2022 12:15:04 +0200
parents 08940efa6b4e
children
line wrap: on
line source

" This test is in a separate file, because it usually causes reports for memory
" 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 check.vim

func Test_job_start_fails()
  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

" vim: shiftwidth=2 sts=2 expandtab