summaryrefslogtreecommitdiffstats
path: root/src/testdir/Makefile
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-09-03 22:35:40 +0200
committerBram Moolenaar <Bram@vim.org>2016-09-03 22:35:40 +0200
commitdac1947bb366ef43cd6da95acc730554e76d8b84 (patch)
treed6959ff23939dfa6e68f8618694efb617c59f2e3 /src/testdir/Makefile
parentdda933d06c06c2792bd686d059f6ad19191ad30b (diff)
patch 7.4.2321v7.4.2321
Problem: When a test is commented out we forget about it. Solution: Let a test throw an exception with "Skipped" and list skipped test functions. (Christian Brabandt)
Diffstat (limited to 'src/testdir/Makefile')
-rw-r--r--src/testdir/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/Makefile b/src/testdir/Makefile
index 2153039d56..08f11cd1c5 100644
--- a/src/testdir/Makefile
+++ b/src/testdir/Makefile
@@ -121,7 +121,7 @@ nolog:
RUN_VIMTEST = VIMRUNTIME=$(SCRIPTSOURCE); export VIMRUNTIME; $(VALGRIND) $(VIMPROG) -f $(GUI_FLAG) -u unix.vim $(NO_PLUGIN)
newtests: newtestssilent
- @/bin/sh -c "if test -f messages && grep -q 'FAILED' messages; then cat messages && cat test.log; fi"
+ @/bin/sh -c "if test -f messages && grep -q 'SKIPPED\|FAILED' messages; then cat messages && if test -f test.log; then cat test.log; fi ; fi"
newtestssilent: $(NEW_TESTS)