diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-09-03 22:35:40 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-09-03 22:35:40 +0200 |
commit | dac1947bb366ef43cd6da95acc730554e76d8b84 (patch) | |
tree | d6959ff23939dfa6e68f8618694efb617c59f2e3 /src/testdir/Makefile | |
parent | dda933d06c06c2792bd686d059f6ad19191ad30b (diff) | |
download | vim-git-dac1947bb366ef43cd6da95acc730554e76d8b84.tar.gz |
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/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/Makefile b/src/testdir/Makefile index 2153039d5..08f11cd1c 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) |