comparison src/testdir/test_version.vim @ 20035:4c9acbd6b3c7 v8.2.0573

patch 8.2.0573: using :version twice leaks memory Commit: https://github.com/vim/vim/commit/278e83863b2c7329f6712b8809e4aa5e6a50e13f Author: Bram Moolenaar <Bram@vim.org> Date: Mon Apr 13 18:25:33 2020 +0200 patch 8.2.0573: using :version twice leaks memory Problem: using :version twice leaks memory Solution: Only initialize variables once. (Dominique Pelle, closes https://github.com/vim/vim/issues/5917)
author Bram Moolenaar <Bram@vim.org>
date Mon, 13 Apr 2020 18:30:08 +0200
parents
children 08940efa6b4e
comparison
equal deleted inserted replaced
20034:1098dd529613 20035:4c9acbd6b3c7
1 " Test :version Ex command
2
3 func Test_version()
4 " version should always return the same string.
5 let v1 = execute('version')
6 let v2 = execute('version')
7 call assert_equal(v1, v2)
8
9 call assert_match("^\n\nVIM - Vi IMproved .*", v1)
10 endfunc