comparison src/Makefile @ 21741:baccf9e06efe v8.2.1420

patch 8.2.1420: test 49 is old style Commit: https://github.com/vim/vim/commit/f7c4d83609acdfe0e4d0fec9413697ac97c0c3f9 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 11 20:42:19 2020 +0200 patch 8.2.1420: test 49 is old style Problem: Test 49 is old style. Solution: Convert remaining parts to new style. Remove obsolete items. (Yegappan Lakshmanan, closes #6683)
author Bram Moolenaar <Bram@vim.org>
date Tue, 11 Aug 2020 20:45:05 +0200
parents d2dee69de7c7
children 35921b7fc07a
comparison
equal deleted inserted replaced
21740:54928f1c0d20 21741:baccf9e06efe
2257 # This doesn't depend on $(VIMTARGET), because that won't work when configure 2257 # This doesn't depend on $(VIMTARGET), because that won't work when configure
2258 # wasn't run yet. Restart make to build it instead. 2258 # wasn't run yet. Restart make to build it instead.
2259 # 2259 #
2260 # This will produce a lot of garbage on your screen, including a few error 2260 # This will produce a lot of garbage on your screen, including a few error
2261 # messages. Don't worry about that. 2261 # messages. Don't worry about that.
2262 # If there is a real error, there will be a difference between "testXX.out" and
2263 # a "testXX.ok" file.
2264 # If everything is alright, the final message will be "ALL DONE". If not you 2262 # If everything is alright, the final message will be "ALL DONE". If not you
2265 # get "TEST FAILURE". 2263 # get "TEST FAILURE".
2266 # 2264 #
2267 scripttests: 2265 scripttests:
2268 $(MAKE) -f Makefile $(VIMTARGET) 2266 $(MAKE) -f Makefile $(VIMTARGET)
2309 @if test `uname` = "Linux"; then \ 2307 @if test `uname` = "Linux"; then \
2310 cd libvterm; $(MAKE) -f Makefile test \ 2308 cd libvterm; $(MAKE) -f Makefile test \
2311 CC="$(CC)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)"; \ 2309 CC="$(CC)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)"; \
2312 fi 2310 fi
2313 2311
2314 # Run individual OLD style test. 2312 # Run test1, used to bootstrap tests.
2315 # These do not depend on the executable, compile it when needed. 2313 # This does not depend on the executable, compile first it when needed.
2316 test1 test49: 2314 test1:
2317 cd testdir; rm -f $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTESTTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE) 2315 cd testdir; rm -f $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTESTTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
2318 2316
2319 # Run individual NEW style test. 2317 # Run individual NEW style test.
2320 # These do not depend on the executable, compile it when needed. 2318 # These do not depend on the executable, compile it when needed.
2321 # Set $TEST_FILTER to select what test function to invoke, e.g.: 2319 # Set $TEST_FILTER to select what test function to invoke, e.g.: