<div dir="auto">In the current postgis-3.0.0dev code,  the top of the file raster/test/regress/Makefile looks like:<div dir="auto">----------------------------</div><div dir="auto"><div dir="auto">#</div><div dir="auto"># Copyright (c) 2009 Sandro Santilli <<a href="mailto:strk@kbt.io" rel="noreferrer noreferrer noreferrer" target="_blank">strk@kbt.io</a>>, Pierre Racine <<a href="mailto:pierre.racine@sbf.ulaval.ca" rel="noreferrer noreferrer noreferrer" target="_blank">pierre.racine@sbf.ulaval.ca</a>></div><div dir="auto"># Copyright (c) 2011 Jorge Arevalo <<a href="mailto:jorge.arevalo@deimos-space.com" rel="noreferrer noreferrer noreferrer" target="_blank">jorge.arevalo@deimos-space.com</a>></div><div dir="auto"># Copyright (c) 2011-2013 Regents of the University of California</div><div dir="auto">#   <<a href="mailto:bkpark@ucdavis.edu" rel="noreferrer noreferrer noreferrer" target="_blank">bkpark@ucdavis.edu</a>></div><div dir="auto">#</div><div dir="auto"># This is free software; you can redistribute and/or modify it under</div><div dir="auto"># the terms of the GNU General Public Licence. See the COPYING file.</div><div dir="auto"># This program is free software; you can redistribute it and/or</div><div dir="auto"># modify it under the terms of the GNU General Public License</div><div dir="auto"># as published by the Free Software Foundation; either version 2</div><div dir="auto"># of the License, or (at your option) any later version.</div><div dir="auto">#</div><div dir="auto"># This program is distributed in the hope that it will be useful,</div><div dir="auto"># but WITHOUT ANY WARRANTY; without even the implied warranty of</div><div dir="auto"># MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the</div><div dir="auto"># GNU General Public License for more details.</div><div dir="auto">#</div><div dir="auto"># You should have received a copy of the GNU General Public License</div><div dir="auto"># along with this program; if not, write to the Free Software Foundation,</div><div dir="auto"># Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.</div><div dir="auto">#</div><div dir="auto">#############################################################################</div><div dir="auto"><br></div><div dir="auto">POSTGIS_SRC=../../..</div><div dir="auto">PERL=/usr/bin/perl</div></div><div dir="auto"><br><div dir="auto"><div dir="auto"># MingW hack: rather than use PGSQL_BINDIR directly, we change</div><div dir="auto"># to the directory and then use "pwd" to return the path. This</div><div dir="auto"># ensures that the returned path is in MSYS format, otherwise</div><div dir="auto"># colons in drive letters will break PATH.</div><div dir="auto">PGSQL_BINDIR=$(shell cd "/usr/local/pgsql/bin" && pwd)</div><div dir="auto"><br></div><div dir="auto"># Where we put our regression installation</div><div dir="auto">REGRESS_INSTALLDIR=$(POSTGIS_SRC)/regress/00-regress-install</div><div dir="auto"><br></div><div dir="auto">#</div><div dir="auto"># Put path from pg_config into front of search path</div><div dir="auto">#</div><div dir="auto">PATH := $(PGSQL_BINDIR):$(PATH)</div><div dir="auto">export PATH</div><div dir="auto">---------------</div><div dir="auto"><br></div><div dir="auto">Nothing similar is in the file topology/test/Makefile</div><div dir="auto"><br></div><div dir="auto">A few thoughts. It probably should have the license and the authors.  The other issue is on all the other tests, the path from <span style="font-family:sans-serif">PGSQL_BINDIR is added before the tests are done.  Thus if make check is run by a user without /usr/local/pgsql/bin in the PATH the tests run fine until you get to topology when is crashes.  Should it be included in the topology test?  Should it be hard coded or do we just need to state it has to be in your PATH?  I am not sure how to create a patch since this file is generated by configure.</span></div><div dir="auto"><span style="font-family:sans-serif">Thanks</span></div><div dir="auto"><span style="font-family:sans-serif">Bruce</span></div></div></div></div>