[postgis-devel] New polygon constructors (was: OGC polygon constructors)

Michael Fuhr mike at fuhr.org
Mon Dec 12 10:29:23 PST 2005


On Mon, Dec 12, 2005 at 06:46:02PM +0100, strk at refractions.net wrote:
> Regress test has been added for the tree functions.

Regression is failing again on Solaris:

./run_test: syntax error at line 64: `SKIPPED=$' unexpected

As I mentioned in another report, /bin/sh on Solaris is a traditional
Bourne Shell so expressions like this don't work:

SKIPPED=$(($SKIPPED+1))

I replaced such expressions with

SKIPPED=`expr $SKIPPED + 1`

After that the tests succeeded.  The system is:

PostgreSQL 8.2devel on sparc-sun-solaris2.9, compiled by GCC gcc (GCC) 3.4.2
POSTGIS="1.1.0CVS" GEOS="3.0.0-CAPI-1.0.1" PROJ="Rel. 4.4.9, 29 Oct 2004" USE_STATS DBPROC="0.3.1" RELPROC="0.3.1"

-- 
Michael Fuhr



More information about the postgis-devel mailing list