Mercurial > vim
diff src/Make_mvc.mak @ 21779:30bdd2e4a6f9 v8.2.1439
patch 8.2.1439: tiny and small builds have no test coverage
Commit: https://github.com/vim/vim/commit/b96a32ef1a95dd4ebf9413d686bccb1b4645f74b
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Aug 13 18:59:55 2020 +0200
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)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 13 Aug 2020 19:15:04 +0200 |
parents | baccf9e06efe |
children | f84625b961a8 |
line wrap: on
line diff
--- a/src/Make_mvc.mak +++ b/src/Make_mvc.mak @@ -1464,12 +1464,22 @@ cmdidxs: ex_cmds.h test: cd testdir - $(MAKE) /NOLOGO -f Make_dos.mak win32 + $(MAKE) /NOLOGO -f Make_dos.mak cd .. testgvim: cd testdir - $(MAKE) /NOLOGO -f Make_dos.mak VIMPROG=..\gvim win32 + $(MAKE) /NOLOGO -f Make_dos.mak VIMPROG=..\gvim + cd .. + +testtiny: + cd testdir + $(MAKE) /NOLOGO -f Make_dos.mak tiny + cd .. + +testgvimtiny: + cd testdir + $(MAKE) /NOLOGO -f Make_dos.mak tiny VIMPROG=..\gvim cd .. testclean: @@ -1477,9 +1487,9 @@ testclean: $(MAKE) /NOLOGO -f Make_dos.mak clean cd .. -# Run test1 to bootstrap tests +# Run individual OLD style test. # These do not depend on the executable, compile it when needed. -$(SCRIPTS_FIRST:.out=): +$(SCRIPTS_TINY): cd testdir - if exist $@.out del $@.out $(MAKE) /NOLOGO -f Make_dos.mak VIMPROG=..\$(VIMTESTTARGET) nolog