Skip to content

Commit ba08930

Browse files
committed
patch 8.1.2183: running a test is a bit verbose
Problem: Running a test is a bit verbose. Solution: Silence some messages. (Daniel Hahler, closes #5070)
1 parent 5b39d7a commit ba08930

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/testdir/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ $(SCRIPTS) $(SCRIPTS_GUI) $(NEW_TESTS_RES): $(SCRIPTS_FIRST)
7373
# make test_largefile
7474
$(NEW_TESTS):
7575
rm -f $@.res test.log messages
76-
$(MAKE) -f Makefile $@.res
77-
cat messages
76+
@MAKEFLAGS=--no-print-directory $(MAKE) -f Makefile $@.res
77+
@cat messages
7878
@if test -f test.log; then \
7979
exit 1; \
8080
fi

src/version.c

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

742742
static int included_patches[] =
743743
{ /* Add new patch number below this line */
744+
/**/
745+
2183,
744746
/**/
745747
2182,
746748
/**/

0 commit comments

Comments
 (0)