comparison src/Makefile @ 12662:15f0f9f16cd9 v8.0.1209

patch 8.0.1209: still too many old style tests commit https://github.com/vim/vim/commit/53f0c962394dc6bc66d5b0762af9434e672d1b25 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Oct 22 14:23:59 2017 +0200 patch 8.0.1209: still too many old style tests Problem: Still too many old style tests. Solution: Convert a few more tests to new style. (Yegappan Lakshmanan, closes #2230)
author Christian Brabandt <cb@256bit.org>
date Sun, 22 Oct 2017 14:30:07 +0200
parents 4767939d10cc
children aa658b33f25a
comparison
equal deleted inserted replaced
12661:9ee086df7d78 12662:15f0f9f16cd9
2086 $(VALGRIND) ./$(MEMFILE_TEST_TARGET) || exit 1; echo $* passed; 2086 $(VALGRIND) ./$(MEMFILE_TEST_TARGET) || exit 1; echo $* passed;
2087 2087
2088 run_message_test: $(MESSAGE_TEST_TARGET) 2088 run_message_test: $(MESSAGE_TEST_TARGET)
2089 $(VALGRIND) ./$(MESSAGE_TEST_TARGET) || exit 1; echo $* passed; 2089 $(VALGRIND) ./$(MESSAGE_TEST_TARGET) || exit 1; echo $* passed;
2090 2090
2091 # Run individual OLD style test, assuming that Vim was already compiled. 2091 # Run individual OLD style test.
2092 # These do not depend on the executable, compile it when needed.
2092 test1 \ 2093 test1 \
2093 test_autoformat_join \
2094 test_changelist \ 2094 test_changelist \
2095 test_close_count \ 2095 test_close_count \
2096 test_erasebackword \ 2096 test_erasebackword \
2097 test_eval \ 2097 test_eval \
2098 test_fixeol \ 2098 test_fixeol \
2099 test_insertcount \ 2099 test_insertcount \
2100 test_listchars \ 2100 test_listchars \
2101 test_search_mbyte \ 2101 test_search_mbyte \
2102 test_wordcount \ 2102 test_wordcount \
2103 test3 test8 \ 2103 test3 test11 test12 test14 test15 test17 test19 \
2104 test11 test12 test14 test15 test17 test19 \
2105 test20 test25 test28 test29 \ 2104 test20 test25 test28 test29 \
2106 test30 test32 test34 test36 test37 test38 test39 \ 2105 test30 test32 test36 test37 test38 test39 \
2107 test40 test42 test44 test45 test48 test49 \ 2106 test40 test42 test44 test45 test48 test49 \
2108 test50 test52 test54 test55 test59 \ 2107 test50 test52 test55 test59 \
2109 test64 test66 test68 test69 \ 2108 test64 test66 test68 test69 \
2110 test70 test72 test73 test77 test79 \ 2109 test70 test72 test73 test77 test79 \
2111 test83 test85 test86 test87 test88 \ 2110 test83 test85 test86 test87 test88 \
2112 test94 test95 test99 \ 2111 test94 test95 test99 test108:
2113 test108:
2114 cd testdir; rm -f $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE) 2112 cd testdir; rm -f $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
2115 2113
2116 # Run individual NEW style test, assuming that Vim was already compiled. 2114 # Run individual NEW style test.
2115 # These do not depend on the executable, compile it when needed.
2117 test_arglist \ 2116 test_arglist \
2118 test_arabic \ 2117 test_arabic \
2119 test_assert \ 2118 test_assert \
2120 test_assign \ 2119 test_assign \
2121 test_autochdir \ 2120 test_autochdir \