Mercurial > vim
view src/testdir/test_job_fails.vim @ 27740:2bd27d5ffbef v8.2.4396
patch 8.2.4396: Python3 test fails
Commit: https://github.com/vim/vim/commit/f5288c589500de0677444af4a428cfbccfccb8ce
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Feb 15 21:33:29 2022 +0000
patch 8.2.4396: Python3 test fails
Problem: Python3 test fails.
Solution: Remove "let".
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 15 Feb 2022 22:45: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