File tree Expand file tree Collapse file tree 3 files changed +97
-23
lines changed Expand file tree Collapse file tree 3 files changed +97
-23
lines changed Original file line number Diff line number Diff line change @@ -26,18 +26,38 @@ test-indent:
26
26
-c ' call RunTestIndent()'
27
27
28
28
test-efm :
29
+ ifndef CI
30
+ $(SILENT) $(VIM) \
31
+ -c 'source test/functions.vim' \
32
+ -c 'source test/run_test.vim' \
33
+ -c 'call RunTestEfm()' | \
34
+ tee test-efm.log | \
35
+ grep "^Error format test"
36
+ else
29
37
$(SILENT) $(VIM) \
30
38
-c 'source test/functions.vim' \
31
39
-c 'source test/run_test.vim' \
32
40
-c 'call RunTestEfm()' | \
33
41
tee test-efm.log
42
+ endif
34
43
35
44
test-syntax :
45
+ ifndef CI
46
+ $(SILENT) $(VIM) \
47
+ -c 'source test/functions.vim' \
48
+ -c 'source test/run_test.vim' \
49
+ -c 'call RunTestSyntax()' | \
50
+ tr -d '[]' | \
51
+ tee test-syntax.log | \
52
+ grep "^Syntax test"
53
+ else
36
54
$(SILENT) $(VIM) \
37
55
-c 'source test/functions.vim' \
38
56
-c 'source test/run_test.vim' \
39
- -c ' call RunTestSyntax()' | tr -d ' []' | \
57
+ -c 'call RunTestSyntax()' | \
58
+ tr -d '[]' | \
40
59
tee test-syntax.log
60
+ endif
41
61
42
62
performance :
43
63
$(SILENT ) time $(VIM ) \
You can’t perform that action at this time.
0 commit comments