comparison src/Makefile @ 5774:0a295a3c9e47 v7.4.231

updated for version 7.4.231 Problem: An error in ":options" is not caught by the tests. Solution: Add a test for ":options". Set $VIMRUNTIME for the tests so that it uses the current runtime files instead of the installed ones.
author Bram Moolenaar <bram@vim.org>
date Tue, 01 Apr 2014 14:08:28 +0200
parents 4b78922d557c
children f084024c0ddb
comparison
equal deleted inserted replaced
5773:39c93da6b937 5774:0a295a3c9e47
1865 cd $(PODIR); $(MAKE) -f Makefile check VIM=../$(VIMTARGET); \ 1865 cd $(PODIR); $(MAKE) -f Makefile check VIM=../$(VIMTARGET); \
1866 fi 1866 fi
1867 -if test $(VIMTARGET) != vim -a ! -r vim; then \ 1867 -if test $(VIMTARGET) != vim -a ! -r vim; then \
1868 ln -s $(VIMTARGET) vim; \ 1868 ln -s $(VIMTARGET) vim; \
1869 fi 1869 fi
1870 cd testdir; $(MAKE) -f Makefile $(GUI_TESTTARGET) VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) 1870 cd testdir; $(MAKE) -f Makefile $(GUI_TESTTARGET) VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
1871 $(MAKE) -f Makefile unittest 1871 $(MAKE) -f Makefile unittest
1872 1872
1873 unittesttargets: 1873 unittesttargets:
1874 $(MAKE) -f Makefile $(UNITTEST_TARGETS) 1874 $(MAKE) -f Makefile $(UNITTEST_TARGETS)
1875 1875
1878 ./$$t || exit 1; echo $$t passed; \ 1878 ./$$t || exit 1; echo $$t passed; \
1879 done 1879 done
1880 1880
1881 # Run individual test, assuming that Vim was already compiled. 1881 # Run individual test, assuming that Vim was already compiled.
1882 test1 test2 test3 test4 test5 test6 test7 test8 test9 \ 1882 test1 test2 test3 test4 test5 test6 test7 test8 test9 \
1883 test_options \
1883 test10 test11 test12 test13 test14 test15 test16 test17 test18 test19 \ 1884 test10 test11 test12 test13 test14 test15 test16 test17 test18 test19 \
1884 test20 test21 test22 test23 test24 test25 test26 test27 test28 test29 \ 1885 test20 test21 test22 test23 test24 test25 test26 test27 test28 test29 \
1885 test30 test31 test32 test33 test34 test35 test36 test37 test38 test39 \ 1886 test30 test31 test32 test33 test34 test35 test36 test37 test38 test39 \
1886 test40 test41 test42 test43 test44 test45 test46 test47 test48 test49 \ 1887 test40 test41 test42 test43 test44 test45 test46 test47 test48 test49 \
1887 test50 test51 test52 test53 test54 test55 test56 test57 test58 test59 \ 1888 test50 test51 test52 test53 test54 test55 test56 test57 test58 test59 \
1888 test60 test61 test62 test63 test64 test65 test66 test67 test68 test69 \ 1889 test60 test61 test62 test63 test64 test65 test66 test67 test68 test69 \
1889 test70 test71 test72 test73 test74 test75 test76 test77 test78 test79 \ 1890 test70 test71 test72 test73 test74 test75 test76 test77 test78 test79 \
1890 test80 test81 test82 test83 test84 test85 test86 test87 test88 test89 \ 1891 test80 test81 test82 test83 test84 test85 test86 test87 test88 test89 \
1891 test90 test91 test92 test93 test94 test95 test96 test97 test98 test99 \ 1892 test90 test91 test92 test93 test94 test95 test96 test97 test98 test99 \
1892 test100 test101 test102 test103 test104 test105 test106 test107: 1893 test100 test101 test102 test103 test104 test105 test106 test107:
1893 cd testdir; rm $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTARGET) 1894 cd testdir; rm $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
1894 1895
1895 testclean: 1896 testclean:
1896 cd testdir; $(MAKE) -f Makefile clean 1897 cd testdir; $(MAKE) -f Makefile clean
1897 if test -d $(PODIR); then \ 1898 if test -d $(PODIR); then \
1898 cd $(PODIR); $(MAKE) checkclean; \ 1899 cd $(PODIR); $(MAKE) checkclean; \