comparison 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
comparison
equal deleted inserted replaced
21778:cc500536c15e 21779:30bdd2e4a6f9
1462 cmdidxs: ex_cmds.h 1462 cmdidxs: ex_cmds.h
1463 vim --clean -X --not-a-term -u create_cmdidxs.vim 1463 vim --clean -X --not-a-term -u create_cmdidxs.vim
1464 1464
1465 test: 1465 test:
1466 cd testdir 1466 cd testdir
1467 $(MAKE) /NOLOGO -f Make_dos.mak win32 1467 $(MAKE) /NOLOGO -f Make_dos.mak
1468 cd .. 1468 cd ..
1469 1469
1470 testgvim: 1470 testgvim:
1471 cd testdir 1471 cd testdir
1472 $(MAKE) /NOLOGO -f Make_dos.mak VIMPROG=..\gvim win32 1472 $(MAKE) /NOLOGO -f Make_dos.mak VIMPROG=..\gvim
1473 cd ..
1474
1475 testtiny:
1476 cd testdir
1477 $(MAKE) /NOLOGO -f Make_dos.mak tiny
1478 cd ..
1479
1480 testgvimtiny:
1481 cd testdir
1482 $(MAKE) /NOLOGO -f Make_dos.mak tiny VIMPROG=..\gvim
1473 cd .. 1483 cd ..
1474 1484
1475 testclean: 1485 testclean:
1476 cd testdir 1486 cd testdir
1477 $(MAKE) /NOLOGO -f Make_dos.mak clean 1487 $(MAKE) /NOLOGO -f Make_dos.mak clean
1478 cd .. 1488 cd ..
1479 1489
1480 # Run test1 to bootstrap tests 1490 # Run individual OLD style test.
1481 # These do not depend on the executable, compile it when needed. 1491 # These do not depend on the executable, compile it when needed.
1482 $(SCRIPTS_FIRST:.out=): 1492 $(SCRIPTS_TINY):
1483 cd testdir 1493 cd testdir
1484 - if exist $@.out del $@.out 1494 - if exist $@.out del $@.out
1485 $(MAKE) /NOLOGO -f Make_dos.mak VIMPROG=..\$(VIMTESTTARGET) nolog 1495 $(MAKE) /NOLOGO -f Make_dos.mak VIMPROG=..\$(VIMTESTTARGET) nolog
1486 $(MAKE) /NOLOGO -f Make_dos.mak VIMPROG=..\$(VIMTESTTARGET) $@.out 1496 $(MAKE) /NOLOGO -f Make_dos.mak VIMPROG=..\$(VIMTESTTARGET) $@.out
1487 @ if exist test.log ( type test.log & exit /b 1 ) 1497 @ if exist test.log ( type test.log & exit /b 1 )