From: Paul Ramsey Date: Wed, 3 Jun 2015 12:52:37 +0000 (+0000) Subject: quite tests a bit X-Git-Tag: 2.2.0rc1~412 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0ecaf428fbd481ccf2f86dda57fdb792cfd12693;p=postgis quite tests a bit git-svn-id: http://svn.osgeo.org/postgis/trunk@13603 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/liblwgeom/cunit/cu_geos.c b/liblwgeom/cunit/cu_geos.c index 19d04c74e..b7ccf47ce 100644 --- a/liblwgeom/cunit/cu_geos.c +++ b/liblwgeom/cunit/cu_geos.c @@ -70,7 +70,7 @@ static void test_geos_noop(void) static void test_geos_subdivide(void) { #if POSTGIS_GEOS_VERSION < 35 - printf("%d\n", POSTGIS_GEOS_VERSION); + // printf("%d\n", POSTGIS_GEOS_VERSION); return; #else char *ewkt = "MULTILINESTRING((0 0, 0 100))"; @@ -80,7 +80,7 @@ static void test_geos_subdivide(void) LWGEOM *geom2 = lwgeom_segmentize2d(geom1, 1.0); LWCOLLECTION *geom3 = lwgeom_subdivide(geom2, 80); out_ewkt = lwgeom_to_ewkt((LWGEOM*)geom3); - printf("\n--------\n%s\n--------\n", out_ewkt); + // printf("\n--------\n%s\n--------\n", out_ewkt); CU_ASSERT_EQUAL(2, geom3->ngeoms); lwfree(out_ewkt); lwcollection_free(geom3); @@ -89,7 +89,7 @@ static void test_geos_subdivide(void) geom2 = lwgeom_segmentize2d(geom1, 1.0); geom3 = lwgeom_subdivide(geom2, 20); out_ewkt = lwgeom_to_ewkt((LWGEOM*)geom3); - printf("\n--------\n%s\n--------\n", out_ewkt); + // printf("\n--------\n%s\n--------\n", out_ewkt); CU_ASSERT_EQUAL(8, geom3->ngeoms); lwfree(out_ewkt); lwcollection_free(geom3);