Mercurial > vim
view src/testdir/test_vim9_cmd.vim @ 20297:5f0611bc6377 v8.2.0704
patch 8.2.0704: Vim9: memory leak in disassemble test
Commit: https://github.com/vim/vim/commit/f821ddaa0c27230012a6bffbec6fb0ab2f101171
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed May 6 22:18:17 2020 +0200
patch 8.2.0704: Vim9: memory leak in disassemble test
Problem: Vim9: memory leak in disassemble test.
Solution: Decrement refcount when creating funccal.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 06 May 2020 22:30:04 +0200 |
parents | 1d84eaed0ec8 |
children | e29b2ec8d4d2 |
line wrap: on
line source
" Test commands that are not compiled in a :def function source check.vim source vim9.vim def Test_edit_wildcards() let filename = 'Xtest' edit `=filename` assert_equal('Xtest', bufname()) let filenr = 123 edit Xtest`=filenr` assert_equal('Xtest123', bufname()) filenr = 77 edit `=filename``=filenr` assert_equal('Xtest77', bufname()) edit X`=filename`xx`=filenr`yy assert_equal('XXtestxx77yy', bufname()) enddef def Test_hardcopy_wildcards() CheckUnix CheckFeature postscript let outfile = 'print' hardcopy > X`=outfile`.ps assert_true(filereadable('Xprint.ps')) delete('Xprint.ps') enddef def Test_syn_include_wildcards() writefile(['syn keyword Found found'], 'Xthemine.vim') let save_rtp = &rtp &rtp = '.' let fname = 'mine' syn include @Group Xthe`=fname`.vim assert_match('Found.* contained found', execute('syn list Found')) &rtp = save_rtp delete('Xthemine.vim') enddef " vim: ts=8 sw=2 sts=2 expandtab tw=80 fdm=marker