diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2014-08-20 00:18:14 -0400 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2014-08-20 00:18:14 -0400 |
| commit | bbefc73c553d681f78f40df9d97ec89ae9b06520 (patch) | |
| tree | 28c769f9e117982af5fde7e5c406153f6fc3bfaf /src/nvim/testdir/Makefile | |
| parent | 95efb3624b321cdbe5b958e3dfab0045d6de5439 (diff) | |
| parent | 41634af0e5cdaa70884ba27c21e624b83b7dc94c (diff) | |
| download | rneovim-bbefc73c553d681f78f40df9d97ec89ae9b06520.tar.gz rneovim-bbefc73c553d681f78f40df9d97ec89ae9b06520.tar.bz2 rneovim-bbefc73c553d681f78f40df9d97ec89ae9b06520.zip | |
Merge pull request #1062 from atwupack/vp-7.4.230+231
vim-patch:7.4.231
Diffstat (limited to 'src/nvim/testdir/Makefile')
| -rw-r--r-- | src/nvim/testdir/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/nvim/testdir/Makefile b/src/nvim/testdir/Makefile index 21f2928593..a7f9dd8fa1 100644 --- a/src/nvim/testdir/Makefile +++ b/src/nvim/testdir/Makefile @@ -5,6 +5,7 @@ export SHELL := sh VIMPROG := ../../../build/bin/nvim +SCRIPTSOURCE := ../../../runtime SCRIPTS := test_autoformat_join.out \ test_eval.out \ @@ -29,7 +30,8 @@ SCRIPTS := test_autoformat_join.out \ test91.out test92.out test93.out test94.out test95.out \ test96.out test97.out test98.out test99.out test100.out \ test101.out test102.out test103.out test104.out test105.out \ - test106.out test107.out + test106.out test107.out \ + test_options.out SCRIPTS_GUI := test16.out @@ -86,7 +88,7 @@ $(SCRIPTS) $(SCRIPTS_GUI): $(VIMPROG) test1.out RM_ON_RUN := test.out X* viminfo RM_ON_START := tiny.vim small.vim mbyte.vim mzscheme.vim lua.vim test.ok -RUN_VIM := $(TOOL) $(VIMPROG) -u unix.vim -U NONE --noplugin -s dotest.in +RUN_VIM := export VIMRUNTIME=$(SCRIPTSOURCE); $(TOOL) $(VIMPROG) -u unix.vim -U NONE --noplugin -s dotest.in clean: -rm -rf *.out \ |