Re: Need a builtin way to run all tests faster manner
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: Peter Eisentraut <peter.eisentraut@2ndquadrant.com>
Cc: Andres Freund <andres@anarazel.de>, Stephen Frost <sfrost@snowman.net>,
pgsql-hackers@postgresql.org
Date: 2017-03-15T17:33:24Z
Lists: pgsql-hackers
Peter Eisentraut <peter.eisentraut@2ndquadrant.com> writes:
> make check-world -O -j6 PROVE_FLAGS=-j6
> 2 min 34 seconds
> Nice!
One thing I've noticed with parallel check-world is that it's possible
for a sub-job to fail and for the resulting complaint from make to scroll
offscreen before everything stops, leaving all the visible output being
from another sub-job that completed just fine. If you don't look VERY
closely, or check $?, you can easily be misled into thinking the tests
all passed.
I think it'd be a good idea to fix check-world so that there's a positive
printout at the end of a successful run, along the lines of the
+@echo "All of PostgreSQL successfully made. Ready to install."
we have for the "all" target.
regards, tom lane
Commits
-
Improve isolation tests infrastructure.
- 60f826c5e624 10.0 landed