view src/testdir/test_job_fails.vim @ 23013:a0a998d2e443 v8.2.2053

patch 8.2.2053: Vim9: lamba doesn't accept argument types Commit: https://github.com/vim/vim/commit/c2ca935d26b3fc64a13d4e7d0583fc787efe61d0 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Nov 25 21:30:11 2020 +0100 patch 8.2.2053: Vim9: lamba doesn't accept argument types Problem: Vim9: lamba doesn't accept argument types. Solution: Optionally accept argument types at the script level.
author Bram Moolenaar <Bram@vim.org>
date Wed, 25 Nov 2020 21:45:04 +0100
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