diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-07-14 21:48:46 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-07-14 21:48:46 +0200 |
commit | 1ce9a1515be5255641d31ab5b0e9418d8f250d84 (patch) | |
tree | bf3d711f63dcca6ed6ea346627c5bca84537d150 /src/testdir/Makefile | |
parent | b6959a8e06cef6d2126b030b2f8acd49457a3582 (diff) | |
download | vim-git-1ce9a1515be5255641d31ab5b0e9418d8f250d84.tar.gz |
patch 8.1.0185: running tests writes lua.vim even though it is not usedv8.1.0185
Problem: Running tests writes lua.vim even though it is not used.
Solution: Stop writing lua.vim.
Diffstat (limited to 'src/testdir/Makefile')
-rw-r--r-- | src/testdir/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/Makefile b/src/testdir/Makefile index 459b86878..57bcb3aa6 100644 --- a/src/testdir/Makefile +++ b/src/testdir/Makefile @@ -51,7 +51,7 @@ $(SCRIPTS_FIRST) $(SCRIPTS) $(SCRIPTS_GUI) $(NEW_TESTS): $(VIMPROG) $(SCRIPTS) $(SCRIPTS_GUI) $(NEW_TESTS): $(SCRIPTS_FIRST) RM_ON_RUN = test.out X* viminfo -RM_ON_START = tiny.vim small.vim mbyte.vim mzscheme.vim lua.vim test.ok benchmark.out +RM_ON_START = tiny.vim small.vim mbyte.vim mzscheme.vim test.ok benchmark.out RUN_VIM = VIMRUNTIME=$(SCRIPTSOURCE); export VIMRUNTIME; $(VALGRIND) $(VIMPROG) -f $(GUI_FLAG) -u unix.vim $(NO_INITS) -s dotest.in clean: |