comparison src/Makefile @ 7313:2062247be2d0 v7.4.962

commit https://github.com/vim/vim/commit/3f12a2421bda43a4e48c822541b75f72ee11125a Author: Bram Moolenaar <Bram@vim.org> Date: Sat Dec 5 20:56:57 2015 +0100 patch 7.4.962 Problem: Cannot run the tests with gvim. Cannot run individual new stests. Solution: Add the -f flag. Add new test targets in Makefile.
author Christian Brabandt <cb@256bit.org>
date Sat, 05 Dec 2015 21:00:05 +0100
parents 6ba7182fb7bd
children 6b057079a836
comparison
equal deleted inserted replaced
7312:ae9e4a4e5fd4 7313:2062247be2d0
1943 test60 test61 test62 test63 test64 test65 test66 test67 test68 test69 \ 1943 test60 test61 test62 test63 test64 test65 test66 test67 test68 test69 \
1944 test70 test71 test72 test73 test74 test75 test76 test77 test78 test79 \ 1944 test70 test71 test72 test73 test74 test75 test76 test77 test78 test79 \
1945 test80 test81 test82 test83 test84 test85 test86 test87 test88 test89 \ 1945 test80 test81 test82 test83 test84 test85 test86 test87 test88 test89 \
1946 test90 test91 test92 test93 test94 test95 test96 test97 test98 test99 \ 1946 test90 test91 test92 test93 test94 test95 test96 test97 test98 test99 \
1947 test100 test101 test102 test103 test104 test105 test106 test107: 1947 test100 test101 test102 test103 test104 test105 test106 test107:
1948 cd testdir; rm $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE) 1948 cd testdir; rm -f $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
1949
1950 test_assert \
1951 test_sort \
1952 test_undolevels \
1953 test_alot:
1954 cd testdir; rm -f $@.res; $(MAKE) -f Makefile $@.res VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
1955
1956 newtests:
1957 cd testdir; rm -f $@.res; $(MAKE) -f Makefile newtests VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
1949 1958
1950 testclean: 1959 testclean:
1951 cd testdir; $(MAKE) -f Makefile clean 1960 cd testdir; $(MAKE) -f Makefile clean
1952 if test -d $(PODIR); then \ 1961 if test -d $(PODIR); then \
1953 cd $(PODIR); $(MAKE) checkclean; \ 1962 cd $(PODIR); $(MAKE) checkclean; \