Fix comment stuff in cunit

git-svn-id: http://svn.osgeo.org/postgis/trunk@5291 b70326c6-7e19-0410-871a-916f4a2858ee
This commit is contained in:
Olivier Courtin 2010-02-22 18:49:40 +00:00
parent 287fbffddd
commit f28948e433
3 changed files with 6 additions and 6 deletions

View file

@ -109,7 +109,7 @@ void out_geojson_test_precision(void)
"{\"type\":\"Point\",\"coordinates\":[1.111,1.111]}",
NULL, 3, 0);
/* huge digits precision, limit is in fact 15 */
/* 9 digits precision */
do_geojson_test(
"POINT(1.2345678901234 1.2345678901234)",
"{\"type\":\"Point\",\"coordinates\":[1.23456789,1.23456789]}",
@ -320,7 +320,7 @@ void out_geojson_test_geoms(void)
"MULTICURVE((5 5,3 5,3 3,0 3),CIRCULARSTRING(0 0,2 1,2 2))",
"lwgeom_to_geojson: 'MultiCurve' geometry type not supported");
/* GML2 - MultiSurface */
/* MultiSurface */
do_geojson_unsupported(
"MULTISURFACE(CURVEPOLYGON(CIRCULARSTRING(-2 0,-1 -1,0 0,1 -1,2 0,0 2,-2 0),(-1 0,0 0.5,1 0,0 1,-1 0)),((7 8,10 10,6 14,4 11,7 8)))",
"lwgeom_to_geojson: 'MultiSurface' geometry type not supported");

View file

@ -158,13 +158,13 @@ void out_gml_test_precision(void)
NULL, 3, 0);
/* GML2 - huge digits precision, limit is in fact 15 */
/* GML2 - 9 digits precision */
do_gml2_test(
"POINT(1.2345678901234 1.2345678901234)",
"<gml:Point><gml:coordinates>1.23456789,1.23456789</gml:coordinates></gml:Point>",
NULL, 9);
/* GML3 - huge digits precision, limit is in fact 15 */
/* GML3 - 9 digits precision */
do_gml3_test(
"POINT(1.2345678901234 1.2345678901234)",
"<gml:Point><gml:pos srsDimension=\"2\">1.23456789 1.23456789</gml:pos></gml:Point>",

View file

@ -107,7 +107,7 @@ void out_kml_test_precision(void)
"<Point><coordinates>1.111,1.111</coordinates></Point>",
3);
/* huge digits precision, limit is in fact 15 */
/* 9 digits precision */
do_kml_test(
"POINT(1.2345678901234 1.2345678901234)",
"<Point><coordinates>1.23456789,1.23456789</coordinates></Point>",
@ -206,7 +206,7 @@ void out_kml_test_geoms(void)
"MULTICURVE((5 5,3 5,3 3,0 3),CIRCULARSTRING(0 0,2 1,2 2))",
"lwgeom_to_kml2: 'MultiCurve' geometry type not supported");
/* GML2 - MultiSurface */
/* MultiSurface */
do_kml_unsupported(
"MULTISURFACE(CURVEPOLYGON(CIRCULARSTRING(-2 0,-1 -1,0 0,1 -1,2 0,0 2,-2 0),(-1 0,0 0.5,1 0,0 1,-1 0)),((7 8,10 10,6 14,4 11,7 8)))",
"lwgeom_to_kml2: 'MultiSurface' geometry type not supported");