diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-08-13 18:59:55 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-08-13 18:59:55 +0200 |
commit | b96a32ef1a95dd4ebf9413d686bccb1b4645f74b (patch) | |
tree | b9672586db9ccb2505455420ab8bf7d30561c7ea /src/testdir/Make_all.mak | |
parent | 7ac616cb0a52bc72b449e19cf9db93bee116c15a (diff) | |
download | vim-git-b96a32ef1a95dd4ebf9413d686bccb1b4645f74b.tar.gz |
patch 8.2.1439: tiny and small builds have no test coveragev8.2.1439
Problem: Tiny and small builds have no test coverage.
Solution: Restore tests that do not depend on the +eval feature.
(Ken Takata, closes #6696)
Diffstat (limited to 'src/testdir/Make_all.mak')
-rw-r--r-- | src/testdir/Make_all.mak | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/src/testdir/Make_all.mak b/src/testdir/Make_all.mak index 57ba651c6..e4ffb05e2 100644 --- a/src/testdir/Make_all.mak +++ b/src/testdir/Make_all.mak @@ -7,8 +7,26 @@ NO_PLUGINS = --noplugin --not-a-term NO_INITS = -U NONE $(NO_PLUGINS) -# The first script creates small.vim. -SCRIPTS_FIRST = test1.out +# Tests for tiny and small builds. +SCRIPTS_TINY = \ + test20 \ + test21 \ + test22 \ + test23 \ + test24 \ + test25 \ + test26 \ + test27 + +SCRIPTS_TINY_OUT = \ + test20.out \ + test21.out \ + test22.out \ + test23.out \ + test24.out \ + test25.out \ + test26.out \ + test27.out # Tests for Vim9 script. TEST_VIM9 = \ @@ -25,6 +43,9 @@ TEST_VIM9_RES = \ test_vim9_func.res \ test_vim9_script.res +# Benchmark scripts. +SCRIPTS_BENCH = test_bench_regexp.res + # Individual tests, including the ones part of test_alot. # Please keep sorted up to test_alot. NEW_TESTS = \ |