diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-04-07 20:53:39 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-04-07 20:53:39 +0200 |
commit | ec5929d0fe7e90f953fa5b019486c0c4e5826d92 (patch) | |
tree | 67cd19b5170a373c3bea0f4a9fe142fd2f78017b /src/testdir/Make_all.mak | |
parent | 86b9a3e8cd24335195dbe377b98bed1ba291268d (diff) | |
download | vim-git-ec5929d0fe7e90f953fa5b019486c0c4e5826d92.tar.gz |
patch 8.2.0527: Vim9: function types insufficiently testedv8.2.0527
Problem: Vim9: function types insufficiently tested.
Solution: Add more tests. Fix white space check. Add "test_vim9" target.
Diffstat (limited to 'src/testdir/Make_all.mak')
-rw-r--r-- | src/testdir/Make_all.mak | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/src/testdir/Make_all.mak b/src/testdir/Make_all.mak index 8ca783168..63d97e862 100644 --- a/src/testdir/Make_all.mak +++ b/src/testdir/Make_all.mak @@ -43,6 +43,19 @@ SCRIPTS_WIN32 = # Tests for the GUI. SCRIPTS_GUI = +# Tests for Vim9 script. +TEST_VIM9 = \ + test_vim9_disassemble \ + test_vim9_expr \ + test_vim9_func \ + test_vim9_script + +TEST_VIM9_RES = \ + test_vim9_disassemble.res \ + test_vim9_expr.res \ + test_vim9_func.res \ + test_vim9_script.res + # Individual tests, including the ones part of test_alot. # Please keep sorted up to test_alot. NEW_TESTS = \ @@ -272,10 +285,7 @@ NEW_TESTS = \ test_utf8 \ test_utf8_comparisons \ test_vartabs \ - test_vim9_disassemble \ - test_vim9_expr \ - test_vim9_func \ - test_vim9_script \ + $(TEST_VIM9) \ test_viminfo \ test_vimscript \ test_virtualedit \ @@ -482,10 +492,7 @@ NEW_TESTS_RES = \ test_user_func.res \ test_usercommands.res \ test_vartabs.res \ - test_vim9_disassemble.res \ - test_vim9_expr.res \ - test_vim9_func.res \ - test_vim9_script.res \ + $(TEST_VIM9_RES) \ test_viminfo.res \ test_vimscript.res \ test_virtualedit.res \ |