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/Makefile | |
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/Makefile')
-rw-r--r-- | src/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile index 35fe41e74..b025a9486 100644 --- a/src/Makefile +++ b/src/Makefile @@ -2258,6 +2258,9 @@ scripttests: testgui: cd testdir; $(MAKE) -f Makefile $(GUI_TESTTARGET) VIMPROG=../$(VIMTARGET) GUI_FLAG=-g $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE) +testtiny: + cd testdir; $(MAKE) -f Makefile tiny VIMPROG=../$(VIMTARGET) SCRIPTSOURCE=../$(SCRIPTSOURCE) + benchmark: cd testdir; $(MAKE) -f Makefile benchmark VIMPROG=../$(VIMTARGET) SCRIPTSOURCE=../$(SCRIPTSOURCE) @@ -2291,9 +2294,9 @@ test_libvterm: CC="$(CC)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)"; \ fi -# Run test1, used to bootstrap tests. -# This does not depend on the executable, compile first it when needed. -test1: +# Run individual OLD style test. +# These do not depend on the executable, compile it when needed. +$(SCRIPTS_TINY): cd testdir; rm -f $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTESTTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE) # Run individual NEW style test. |