pgsql: Regression makefile now needs to make separate lists of what to

Started by Tom Laneover 19 years ago2 messagescomitters
Jump to latest
#1Tom Lane
tgl@sss.pgh.pa.us

Log Message:
-----------
Regression makefile now needs to make separate lists of what to clean
for input/ and output/ directories, because with the addition of
largeobject_1.source, they're not the same list. Apparently the current
buildfarm process does not exercise whether 'make distclean' leaves a
clean tree behind, else the farm would have been failing for awhile.

Modified Files:
--------------
pgsql/src/test/regress:
GNUmakefile (r1.66 -> r1.67)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/test/regress/GNUmakefile.diff?r1=1.66&r2=1.67)

#2Andrew Dunstan
andrew@dunslane.net
In reply to: Tom Lane (#1)
Re: pgsql: Regression makefile now needs to make separate lists of what to

Tom Lane wrote:

Log Message:
-----------
Regression makefile now needs to make separate lists of what to clean
for input/ and output/ directories, because with the addition of
largeobject_1.source, they're not the same list. Apparently the current
buildfarm process does not exercise whether 'make distclean' leaves a
clean tree behind, else the farm would have been failing for awhile.

The buildfarm doesn't run "make distclean". Except for vpath builds, it
always builds against a copy of the repo, which is thrown away at the
end of the run. In the vpath case, the vpath directory tree is discarded.

Thanks for fixing the makefile.

cheers

andrew