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) --- runtime/doc/testing.txt | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'runtime') diff --git a/runtime/doc/testing.txt b/runtime/doc/testing.txt index 1147673d5..15c5498a5 100644 --- a/runtime/doc/testing.txt +++ b/runtime/doc/testing.txt @@ -20,11 +20,17 @@ and for testing plugins. Vim can be tested after building it, usually with "make test". The tests are located in the directory "src/testdir". +There are two types of tests added over time: + test20.in oldest, only for tiny and small builds + test_something.vim new style tests + *new-style-testing* New tests should be added as new style tests. The test scripts are named test_.vim (replace with the feature under test). These use functions such as |assert_equal()| to keep the test commands and the expected result in one place. + *old-style-testing* +These tests are used only for testing Vim without the |+eval| feature. Find more information in the file src/testdir/README.txt. -- cgit v1.2.1