comparison src/Makefile @ 8530:66afe6d5a9de v7.4.1555

commit https://github.com/vim/vim/commit/fff341eb5960f656529b56c949043f041eddbb1e Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 13 13:27:36 2016 +0100 patch 7.4.1555 Problem: List of test targets incomplete. Solution: Add newly added tests.
author Christian Brabandt <cb@256bit.org>
date Sun, 13 Mar 2016 13:30:05 +0100
parents 74b15ed0a259
children 3de84783c029
comparison
equal deleted inserted replaced
8529:98b2c81af88b 8530:66afe6d5a9de
422 # Uncomment this when you want to include the Python interface. 422 # Uncomment this when you want to include the Python interface.
423 # Requires small features or better, fails with tiny features. 423 # Requires small features or better, fails with tiny features.
424 # NOTE: This may cause threading to be enabled, which has side effects (such 424 # NOTE: This may cause threading to be enabled, which has side effects (such
425 # as using different libraries and debugging becomes more difficult). 425 # as using different libraries and debugging becomes more difficult).
426 # NOTE: Using this together with Perl may cause a crash in initialization. 426 # NOTE: Using this together with Perl may cause a crash in initialization.
427 # For Python3 support make a symbolic link in /usr/local/bin: 427 # For Python3 support make a symbolic link in /usr/local/bin:
428 # ln -s python3 python3.1 428 # ln -s python3 python3.1
429 # If both python2.x and python3.x are enabled then the linking will be via 429 # If both python2.x and python3.x are enabled then the linking will be via
430 # dlopen(), dlsym(), dlclose(), i.e. pythonX.Y.so must be available 430 # dlopen(), dlsym(), dlclose(), i.e. pythonX.Y.so must be available
431 # However, this may still cause problems, such as "import termios" failing. 431 # However, this may still cause problems, such as "import termios" failing.
432 # Build two separate versions of Vim in that case. 432 # Build two separate versions of Vim in that case.
1995 cd testdir; rm -f $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE) 1995 cd testdir; rm -f $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
1996 1996
1997 # Run individual NEW style test, assuming that Vim was already compiled. 1997 # Run individual NEW style test, assuming that Vim was already compiled.
1998 test_arglist \ 1998 test_arglist \
1999 test_assert \ 1999 test_assert \
2000 test_assign \
2000 test_backspace_opt \ 2001 test_backspace_opt \
2001 test_cdo \ 2002 test_cdo \
2002 test_channel \ 2003 test_channel \
2003 test_cursor_func \ 2004 test_cursor_func \
2004 test_delete \ 2005 test_delete \
2005 test_expand \ 2006 test_expand \
2007 test_feedkeys \
2008 test_file_perm \
2006 test_glob2regpat \ 2009 test_glob2regpat \
2007 test_hardcopy \ 2010 test_hardcopy \
2011 test_history \
2008 test_increment \ 2012 test_increment \
2013 test_join \
2009 test_json \ 2014 test_json \
2010 test_langmap \ 2015 test_langmap \
2011 test_lispwords \ 2016 test_lispwords \
2012 test_menu \ 2017 test_menu \
2018 test_packadd \
2013 test_perl \ 2019 test_perl \
2014 test_quickfix \ 2020 test_quickfix \
2015 test_reltime \ 2021 test_reltime \
2016 test_searchpos \ 2022 test_searchpos \
2017 test_set \ 2023 test_set \
2018 test_sort \ 2024 test_sort \
2025 test_syn_attr \
2019 test_syntax \ 2026 test_syntax \
2020 test_undolevels \ 2027 test_undolevels \
2021 test_unlet \ 2028 test_unlet \
2022 test_viminfo \ 2029 test_viminfo \
2023 test_viml \ 2030 test_viml \
2031 test_visual \
2024 test_alot: 2032 test_alot:
2025 cd testdir; rm -f $@.res test.log messages; $(MAKE) -f Makefile $@.res VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE) 2033 cd testdir; rm -f $@.res test.log messages; $(MAKE) -f Makefile $@.res VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
2026 @if test -f testdir/test.log; then \ 2034 @if test -f testdir/test.log; then \
2027 cat testdir/test.log; \ 2035 cat testdir/test.log; \
2028 fi 2036 fi