Skip to content

Commit e9c81b6

Browse files
committed
Remove --verbose from PROVE_FLAGS
Per discussion, the TAP tests are really more verbose than necessary, so remove the --verbose flag from PROVE_FLAGS. Also add comments to let folks know how they can enable it if they really wish to, as suggested by Craig Ringer. Author: Michael Paquier, additional comments by me. Discussion: https://postgr.es/m/CAMsr%2BYGAzcMDOZ_BirnMCL6Sb%3DMUjP0FRE82YBDSbXcf6pm9Yg%40mail.gmail.com
1 parent fe7bbc4 commit e9c81b6

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/Makefile.global.in

+2-1
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,8 @@ PROVE = @PROVE@
339339
# There are common routines in src/test/perl, and some test suites have
340340
# extra perl modules in their own directory.
341341
PG_PROVE_FLAGS = -I $(top_srcdir)/src/test/perl/ -I $(srcdir)
342-
PROVE_FLAGS = --verbose
342+
# For more info, add to your make line: PROVE_FLAGS='--verbose'
343+
PROVE_FLAGS =
343344

344345
# prepend to path if already set, else just set it
345346
define add_to_path

src/test/perl/README

+5
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ src/test/ssl, or should be added to one of the suites for an existing utility.
2020
Note that all tests and test tools should have perltidy run on them before
2121
patches are submitted, using perltidy --profile=src/tools/pgindent/perltidyrc
2222

23+
By default, to keep the noise low during runs, we do not set any flags via
24+
PROVE_FLAGS, but this can be done on the 'make' command line if desired, eg:
25+
26+
make check-world PROVE_FLAGS='--verbose'
27+
2328
Writing tests
2429
-------------
2530

0 commit comments

Comments
 (0)