]> granicus.if.org Git - postgis/commitdiff
quite tests a bit
authorPaul Ramsey <pramsey@cleverelephant.ca>
Wed, 3 Jun 2015 12:52:37 +0000 (12:52 +0000)
committerPaul Ramsey <pramsey@cleverelephant.ca>
Wed, 3 Jun 2015 12:52:37 +0000 (12:52 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@13603 b70326c6-7e19-0410-871a-916f4a2858ee

liblwgeom/cunit/cu_geos.c

index 19d04c74e0e1320e5d38554956a2f6dbdbf5478a..b7ccf47ce9176363e6fffc53d3e1692a58ff4da3 100644 (file)
@@ -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);