Skip to content

Commit abab7d5

Browse files
committed
Add '-i NONE' option to test command
1 parent 241784e commit abab7d5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ py/test: py/vimlparser.py
3737
test/run_command.sh $(TEST_PYTHON) py/vimlparser.py
3838

3939
test/node_position/test_position.out: test/node_position/test_position.vim test/node_position/test_position.ok
40-
vim -Nu test/vimrc -S test/node_position/test_position.vim
40+
vim -Nu test/vimrc -i NONE -S test/node_position/test_position.vim
4141
diff -u test/node_position/test_position.ok test/node_position/test_position.out
4242

4343
.PHONY: all clean_compiled check test fast-test vim/test js/test py/test

test/run.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@echo off
2-
vim -Nu test/vimrc -S test/run.vim
2+
vim -Nu test/vimrc -i NONE -S test/run.vim
33
set EXIT=%ERRORLEVEL%
44
if exist test.log type test.log
55
exit /b %EXIT%

test/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
vim -Nu test/vimrc -S test/run.vim
2+
vim -Nu test/vimrc -i NONE -S test/run.vim
33
EXIT=$?
44
[ -e test.log ] && cat test.log
55
exit $EXIT

0 commit comments

Comments
 (0)