Skip to content

Commit 72c357d

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents 0a52ec9 + e7893a4 commit 72c357d

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

src/Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1979,6 +1979,7 @@ test1 \
19791979
test_tagcase \
19801980
test_textobjects \
19811981
test_utf8 \
1982+
test_wordcount \
19821983
test_writefile \
19831984
test2 test3 test4 test5 test6 test7 test8 test9 \
19841985
test10 test11 test12 test13 test14 test15 test16 test17 test18 test19 \
@@ -1994,11 +1995,15 @@ test1 \
19941995
cd testdir; rm -f [email protected]; $(MAKE) -f Makefile [email protected] VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
19951996

19961997
test_assert \
1998+
test_backspace_opt \
19971999
test_cdo \
2000+
test_menu \
2001+
test_quickfix \
19982002
test_searchpos \
19992003
test_set \
20002004
test_sort \
20012005
test_undolevels \
2006+
test_unlet \
20022007
test_viml \
20032008
test_alot:
20042009
cd testdir; rm -f [email protected] test.log messages; $(MAKE) -f Makefile [email protected] VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
@@ -2008,7 +2013,7 @@ test_assert \
20082013
cat testdir/messages
20092014

20102015
newtests:
2011-
cd testdir; rm -f $@.res test.log messages; $(MAKE) -f Makefile newtests VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
2016+
cd testdir; rm -f $@.res test.log messages; $(MAKE) -f Makefile newtestssilent VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
20122017
@if test -f testdir/test.log; then \
20132018
cat testdir/test.log; \
20142019
fi

src/testdir/Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,11 @@ nolog:
120120
# Limitation: Only works with the +eval feature.
121121
RUN_VIMTEST = VIMRUNTIME=$(SCRIPTSOURCE); export VIMRUNTIME; $(VALGRIND) $(VIMPROG) -f -u unix.vim -U NONE --noplugin
122122

123-
newtests: $(NEW_TESTS)
123+
newtests: newtestssilent
124+
@/bin/sh -c "if test -f messages && grep -q 'FAILED' messages; then cat messages && cat test.log; fi"
125+
126+
newtestssilent: $(NEW_TESTS)
127+
124128

125129
.vim.res:
126130
$(RUN_VIMTEST) -u NONE -S runtest.vim $*.vim

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -756,6 +756,8 @@ static char *(features[]) =
756756

757757
static int included_patches[] =
758758
{ /* Add new patch number below this line */
759+
/**/
760+
1055,
759761
/**/
760762
1054,
761763
/**/

0 commit comments

Comments
 (0)