comparison src/Makefile @ 21510:31cb78014fe4 v8.2.1305

patch 8.2.1305: some tests are still old style Commit: https://github.com/vim/vim/commit/622b3568fa1baf07671d31390815fb0a55a99891 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jul 27 20:02:41 2020 +0200 patch 8.2.1305: some tests are still old style Problem: Some tests are still old style. Solution: Convert tests 52 and 70 to new style. (Yegappan Lakshmanan, closes #6544) Fix error in FinishTesting().
author Bram Moolenaar <Bram@vim.org>
date Mon, 27 Jul 2020 20:15:07 +0200
parents c9a1b3b66fb7
children dc1c26547a42
comparison
equal deleted inserted replaced
21509:00a2e4d3fc38 21510:31cb78014fe4
2308 CC="$(CC)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)"; \ 2308 CC="$(CC)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)"; \
2309 fi 2309 fi
2310 2310
2311 # Run individual OLD style test. 2311 # Run individual OLD style test.
2312 # These do not depend on the executable, compile it when needed. 2312 # These do not depend on the executable, compile it when needed.
2313 test1 \ 2313 test1 test42 test49 test59:
2314 test42 test49 \
2315 test52 test59 \
2316 test70:
2317 cd testdir; rm -f $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTESTTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE) 2314 cd testdir; rm -f $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTESTTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
2318 2315
2319 # Run individual NEW style test. 2316 # Run individual NEW style test.
2320 # These do not depend on the executable, compile it when needed. 2317 # These do not depend on the executable, compile it when needed.
2321 # Set $TEST_FILTER to select what test function to invoke, e.g.: 2318 # Set $TEST_FILTER to select what test function to invoke, e.g.: