From b96a32ef1a95dd4ebf9413d686bccb1b4645f74b Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 13 Aug 2020 18:59:55 +0200 Subject: patch 8.2.1439: tiny and small builds have no test coverage Problem: Tiny and small builds have no test coverage. Solution: Restore tests that do not depend on the +eval feature. (Ken Takata, closes #6696) --- src/testdir/Make_all.mak | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) (limited to 'src/testdir/Make_all.mak') diff --git a/src/testdir/Make_all.mak b/src/testdir/Make_all.mak index 57ba651c65..e4ffb05e2c 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 = \ -- cgit v1.2.3