File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 8
8
- name : Vim 7.4
9
9
env :
10
10
- VIM_VERSION=v7.4
11
- - MAKE_TARGET=test
11
+ - MAKE_TARGET=vim/ test
12
12
- TEST_PROFILE=vim-profile-v7.4.txt
13
13
- name : Vim v8
14
14
env :
15
15
- VIM_VERSION=v8.0.0000
16
- - MAKE_TARGET=test
16
+ - MAKE_TARGET=vim/ test
17
17
- TEST_PROFILE=vim-profile-v8.0.txt
18
18
- name : Vim master
19
19
env :
20
20
- VIM_VERSION=master
21
- - MAKE_TARGET=test
21
+ - MAKE_TARGET=vim/ test
22
22
- TEST_PROFILE=vim-profile-master.txt
23
23
- name : Installed Vim with checks
24
24
env :
25
25
- 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
27
27
- TEST_PROFILE=vim-profile-installed.txt
28
28
- TEST_PYTHON=python3
29
29
Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ COMPILED_FILES:=js/vimlparser.js py/vimlparser.py
2
2
3
3
all : $(COMPILED_FILES )
4
4
5
+ test : clean_compiled check fast-test
6
+ fast-test : checkpy checkvim vim/test js/test py/test test/node_position/test_position.out
7
+
5
8
js/vimlparser.js : autoload/vimlparser.vim js/jscompiler.vim js/vimlfunc.js
6
9
scripts/jscompile.sh $< $@
7
10
@@ -22,7 +25,7 @@ checkpy: all
22
25
checkvim : all
23
26
vint autoload py/pycompiler.vim
24
27
25
- test :
28
+ vim/ test :
26
29
test/run.sh
27
30
28
31
js/test : js/vimlparser.js
@@ -36,4 +39,4 @@ test/node_position/test_position.out: test/node_position/test_position.vim test/
36
39
vim -Nu test/vimrc -S test/node_position/test_position.vim
37
40
diff -u test/node_position/test_position.ok test/node_position/test_position.out
38
41
39
- .PHONY : all clean_compiled check test js/test py/test
42
+ .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