Mercurial > vim
view src/testdir/test_job_fails.vim @ 27716:4097434c7c67 v8.2.4384
patch 8.2.4384: Vim9: error message not tested, some code not tested
Commit: https://github.com/vim/vim/commit/bc510064027da8024d59460c9c816aea4ffac096
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Feb 14 21:19:04 2022 +0000
patch 8.2.4384: Vim9: error message not tested, some code not tested
Problem: Vim9: error message not tested, some code not tested.
Solution: Add a couple of test cases. Give an error for a command modifier
without a command.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 14 Feb 2022 22:30:03 +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