comparison src/Makefile @ 19942:b471038ec3ea v8.2.0527

patch 8.2.0527: Vim9: function types insufficiently tested Commit: https://github.com/vim/vim/commit/ec5929d0fe7e90f953fa5b019486c0c4e5826d92 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Apr 7 20:53:39 2020 +0200 patch 8.2.0527: Vim9: function types insufficiently tested Problem: Vim9: function types insufficiently tested. Solution: Add more tests. Fix white space check. Add "test_vim9" target.
author Bram Moolenaar <Bram@vim.org>
date Tue, 07 Apr 2020 21:00:04 +0200
parents 5e41b2e63c73
children cb0990a07084
comparison
equal deleted inserted replaced
19941:e0542f0c06d7 19942:b471038ec3ea
2299 # These do not depend on the executable, compile it when needed. 2299 # These do not depend on the executable, compile it when needed.
2300 # Set $TEST_FILTER to select what test function to invoke, e.g.: 2300 # Set $TEST_FILTER to select what test function to invoke, e.g.:
2301 # export TEST_FILTER=Test_terminal_wipe_buffer 2301 # export TEST_FILTER=Test_terminal_wipe_buffer
2302 # A partial match also works: 2302 # A partial match also works:
2303 # export TEST_FILTER=wipe_buffer 2303 # export TEST_FILTER=wipe_buffer
2304 $(NEW_TESTS): 2304 $(NEW_TESTS) test_vim9:
2305 cd testdir; $(MAKE) $@ VIMPROG=../$(VIMTESTTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE) 2305 cd testdir; $(MAKE) $@ VIMPROG=../$(VIMTESTTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
2306 2306
2307 newtests: 2307 newtests:
2308 cd testdir; rm -f $@.res test.log messages; $(MAKE) -f Makefile newtestssilent VIMPROG=../$(VIMTESTTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE) 2308 cd testdir; rm -f $@.res test.log messages; $(MAKE) -f Makefile newtestssilent VIMPROG=../$(VIMTESTTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
2309 @if test -f testdir/test.log; then \ 2309 @if test -f testdir/test.log; then \