view src/testdir/test_vim9_fails.vim @ 27398:472bb63632bd v8.2.4227

patch 8.2.4227: Vim9: using "lockvar!" in :def function does not work Commit: https://github.com/vim/vim/commit/e939f5ebbae8dd7825d62d84e0c9910fa1756a9c Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jan 26 21:32:59 2022 +0000 patch 8.2.4227: Vim9: using "lockvar!" in :def function does not work Problem: Vim9: using "lockvar!" in :def function does not work. Solution: Add "!" instead of "-1". (closes https://github.com/vim/vim/issues/9634)
author Bram Moolenaar <Bram@vim.org>
date Wed, 26 Jan 2022 22:45:04 +0100
parents b94ef0b282f1
children 54e36d01847b
line wrap: on
line source

" Test for Vim9 script with failures, causing memory leaks to be reported.
" The leaks happen after a fork() and can be ignored.

source check.vim

def Test_assignment()
  if !has('channel')
    CheckFeature channel
  else
    var chan1: channel
    var job1: job
    var job2: job = job_start('willfail')
  endif
enddef

" Unclear why this test causes valgrind to report problems.
def Test_job_info_return_type()
  if !has('job')
    CheckFeature job
  else
    var job: job = job_start(&shell)
    var jobs = job_info()
    assert_equal('list<job>', typename(jobs))
    assert_equal('dict<any>', typename(job_info(jobs[0])))
    job_stop(job)
  endif
enddef