From aed8ce9da277f5ecffe968b324f242c41c3b752a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 10:50:31 +0200 Subject: Adding upstream version 2:9.0.1378. Signed-off-by: Daniel Baumann --- src/testdir/test_job_fails.vim | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/testdir/test_job_fails.vim (limited to 'src/testdir/test_job_fails.vim') diff --git a/src/testdir/test_job_fails.vim b/src/testdir/test_job_fails.vim new file mode 100644 index 0000000..1751d1d --- /dev/null +++ b/src/testdir/test_job_fails.vim @@ -0,0 +1,17 @@ +" 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 -- cgit v1.2.3