File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 88 - name : Vim 7.4
99 env :
1010 - VIM_VERSION=v7.4
11- - MAKE_TARGET=test
11+ - MAKE_TARGET=vim/ test
1212 - TEST_PROFILE=vim-profile-v7.4.txt
1313 - name : Vim v8
1414 env :
1515 - VIM_VERSION=v8.0.0000
16- - MAKE_TARGET=test
16+ - MAKE_TARGET=vim/ test
1717 - TEST_PROFILE=vim-profile-v8.0.txt
1818 - name : Vim master
1919 env :
2020 - VIM_VERSION=master
21- - MAKE_TARGET=test
21+ - MAKE_TARGET=vim/ test
2222 - TEST_PROFILE=vim-profile-master.txt
2323 - name : Installed Vim with checks
2424 env :
2525 - VIM_VERSION=installed
26- - MAKE_TARGET="clean_compiled check checkpy checkvim js/ test py/test test/node_position/test_position.out"
26+ - MAKE_TARGET=test
2727 - TEST_PROFILE=vim-profile-installed.txt
2828 - TEST_PYTHON=python3
2929
Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ COMPILED_FILES:=js/vimlparser.js py/vimlparser.py
22
33all : $(COMPILED_FILES )
44
5+ test : clean_compiled check fast-test
6+ fast-test : checkpy checkvim js/test py/test test/node_position/test_position.out
7+
58js/vimlparser.js : autoload/vimlparser.vim js/jscompiler.vim js/vimlfunc.js
69 scripts/jscompile.sh $< $@
710
@@ -22,8 +25,7 @@ checkpy: all
2225checkvim : all
2326 vint autoload
2427
25- test :
26- test/run.sh
28+ vim/test :
2729
2830js/test : js/vimlparser.js
2931 test/run_command.sh node js/vimlparser.js
@@ -36,4 +38,4 @@ test/node_position/test_position.out: test/node_position/test_position.vim test/
3638 vim -Nu test/vimrc -S test/node_position/test_position.vim
3739 diff -u test/node_position/test_position.ok test/node_position/test_position.out
3840
39- .PHONY : all clean_compiled check test js/test py/test
41+ .PHONY : all clean_compiled check test fast-test vim/test js/test py/test
You can’t perform that action at this time.
0 commit comments