view src/testdir/test_job_fails.vim @ 34240:ac9356547a7b v9.1.0065

patch 9.1.0065: Segfault with CompleteChanged autocommand Commit: https://github.com/vim/vim/commit/fef66301665027f1801a18d796f74584666f41ef Author: Christian Brabandt <cb@256bit.org> Date: Mon Jan 29 21:46:58 2024 +0100 patch 9.1.0065: Segfault with CompleteChanged autocommand Problem: Segfault with CompleteChanged autocommand (markonm ) Solution: Test match->cp_prev for being NULL before accessing it closes: #13929 Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Mon, 29 Jan 2024 22:00:02 +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