diff options
| author | ZyX <kp-pav@yandex.ru> | 2017-07-31 13:13:14 +0300 |
|---|---|---|
| committer | ZyX <kp-pav@yandex.ru> | 2017-07-31 13:13:14 +0300 |
| commit | a356d3c89567dc13c5de70d33e5bcc534bf4c6cb (patch) | |
| tree | 7e0b7c3902641378056e9c21abb6a1122d2c5dd7 /src/nvim/testdir/Makefile | |
| parent | fbe60af538aa6c723779ae7a816de845460619ae (diff) | |
| parent | 27356de2697ca542ded05ea6c2017a3ca738084f (diff) | |
| download | rneovim-a356d3c89567dc13c5de70d33e5bcc534bf4c6cb.tar.gz rneovim-a356d3c89567dc13c5de70d33e5bcc534bf4c6cb.tar.bz2 rneovim-a356d3c89567dc13c5de70d33e5bcc534bf4c6cb.zip | |
Merge branch 'master' into colored-cmdline
Diffstat (limited to 'src/nvim/testdir/Makefile')
| -rw-r--r-- | src/nvim/testdir/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/Makefile b/src/nvim/testdir/Makefile index 9ba4e4b3c1..4449a0bc80 100644 --- a/src/nvim/testdir/Makefile +++ b/src/nvim/testdir/Makefile @@ -132,7 +132,7 @@ $(SCRIPTS) $(SCRIPTS_GUI): $(NVIM_PRG) test1.out RM_ON_RUN := test.out X* viminfo RM_ON_START := test.ok -RUN_VIM := VIMRUNTIME=$(SCRIPTSOURCE); export VIMRUNTIME; $(TOOL) $(NVIM_PRG) -u unix.vim -U NONE -i viminfo --noplugin -s dotest.in +RUN_VIM := VIMRUNTIME=$(SCRIPTSOURCE); export VIMRUNTIME; $(TOOL) $(NVIM_PRG) -u unix.vim -U NONE -i viminfo --headless --noplugin -s dotest.in clean: -rm -rf *.out \ @@ -201,7 +201,7 @@ nolog: # New style of tests uses Vim script with assert calls. These are easier # to write and a lot easier to read and debug. # Limitation: Only works with the +eval feature. -RUN_VIMTEST = VIMRUNTIME=$(SCRIPTSOURCE); export VIMRUNTIME; $(TOOL) $(NVIM_PRG) -u unix.vim -U NONE --noplugin +RUN_VIMTEST = VIMRUNTIME=$(SCRIPTSOURCE); export VIMRUNTIME; $(TOOL) $(NVIM_PRG) -u unix.vim -U NONE --headless --noplugin newtests: newtestssilent @/bin/sh -c "if test -f messages && grep -q 'FAILED' messages; then \ |