disable one unit test

git-svn-id: http://svn.osgeo.org/postgis/trunk@12540 b70326c6-7e19-0410-871a-916f4a2858ee
This commit is contained in:
Bborie Park 2014-05-13 15:33:31 +00:00
parent 5aff85b80f
commit ff1d8309f2

View file

@ -134,10 +134,12 @@ static void test_util_gdal_open() {
CU_ASSERT(ds == NULL); CU_ASSERT(ds == NULL);
/* enabled drivers with VSICURL */ /* enabled drivers with VSICURL */
/* disabled as we don't want network access as a requirement
gdal_enabled_drivers = enabled_vsi; gdal_enabled_drivers = enabled_vsi;
ds = rt_util_gdal_open("/vsicurl/http://download.osgeo.org/gdal/data/gtiff/small_world.tif", GA_ReadOnly, 0); ds = rt_util_gdal_open("/vsicurl/http://download.osgeo.org/gdal/data/gtiff/small_world.tif", GA_ReadOnly, 0);
CU_ASSERT(ds != NULL); CU_ASSERT(ds != NULL);
GDALClose(ds); GDALClose(ds);
*/
} }
/* register tests */ /* register tests */