summaryrefslogtreecommitdiffstats
path: root/src/testdir/Makefile
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2015-12-29 14:26:57 +0100
committerBram Moolenaar <Bram@vim.org>2015-12-29 14:26:57 +0100
commit096c8bb40d51b22a4b1d761baf7bb79fb9e55a28 (patch)
tree9b51618a06a9e08cb97c6535028b54d67cf8fe39 /src/testdir/Makefile
parente5c5f0c66c9491aca013f30da6e4f730a7ba7db6 (diff)
patch 7.4.991v7.4.991
Problem: When running new style tests the output is not visible. Solution: Add the testdir/messages file and show it. Update the list of test names.
Diffstat (limited to 'src/testdir/Makefile')
-rw-r--r--src/testdir/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/testdir/Makefile b/src/testdir/Makefile
index b587f32e91..6cc928c7f6 100644
--- a/src/testdir/Makefile
+++ b/src/testdir/Makefile
@@ -55,7 +55,7 @@ RM_ON_START = tiny.vim small.vim mbyte.vim mzscheme.vim lua.vim test.ok benchmar
RUN_VIM = VIMRUNTIME=$(SCRIPTSOURCE); export VIMRUNTIME; $(VALGRIND) $(VIMPROG) -f -u unix.vim -U NONE --noplugin -s dotest.in
clean:
- -rm -rf *.out *.failed *.res *.rej *.orig test.log $(RM_ON_RUN) $(RM_ON_START) valgrind.*
+ -rm -rf *.out *.failed *.res *.rej *.orig test.log messages $(RM_ON_RUN) $(RM_ON_START) valgrind.*
test1.out: test1.in
-rm -rf $*.failed $(RM_ON_RUN) $(RM_ON_START) wrongtermsize
@@ -112,7 +112,7 @@ bench_re_freeze.out: bench_re_freeze.vim
@/bin/sh -c "if test -f benchmark.out; then cat benchmark.out; fi"
nolog:
- -rm -f test.log
+ -rm -f test.log messages
# New style of tests uses Vim script with assert calls. These are easier
@@ -123,4 +123,4 @@ RUN_VIMTEST = VIMRUNTIME=$(SCRIPTSOURCE); export VIMRUNTIME; $(VALGRIND) $(VIMPR
newtests: $(NEW_TESTS)
.vim.res:
- $(RUN_VIMTEST) -S runtest.vim $*.vim
+ $(RUN_VIMTEST) -u NONE -S runtest.vim $*.vim