comparison src/testdir/runtest.vim @ 19579:aae19dd172c0 v8.2.0346

patch 8.2.0346: Vim9: finding common list type not tested Commit: https://github.com/vim/vim/commit/61a6d4e48b4778bdbc741af8ac59519b70f65db8 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 1 23:32:25 2020 +0100 patch 8.2.0346: Vim9: finding common list type not tested Problem: Vim9: finding common list type not tested. Solution: Add more tests. Fix listing function. Fix overwriting type.
author Bram Moolenaar <Bram@vim.org>
date Sun, 01 Mar 2020 23:45:04 +0100
parents 49b78d6465e5
children c3f506e24eab
comparison
equal deleted inserted replaced
19578:0ed88fd84485 19579:aae19dd172c0
384 384
385 " Locate Test_ functions and execute them. 385 " Locate Test_ functions and execute them.
386 redir @q 386 redir @q
387 silent function /^Test_ 387 silent function /^Test_
388 redir END 388 redir END
389 let s:tests = split(substitute(@q, 'function \(\k*()\)', '\1', 'g')) 389 let s:tests = split(substitute(@q, '\(function\|def\) \(\k*()\)', '\2', 'g'))
390 390
391 " If there is an extra argument filter the function names against it. 391 " If there is an extra argument filter the function names against it.
392 if argc() > 1 392 if argc() > 1
393 let s:tests = filter(s:tests, 'v:val =~ argv(1)') 393 let s:tests = filter(s:tests, 'v:val =~ argv(1)')
394 endif 394 endif