bypass expected error condition - refs #3125
This commit is contained in:
parent
ca63ae0a96
commit
5fe7367231
1 changed files with 6 additions and 1 deletions
|
@ -418,7 +418,12 @@ TEST_CASE("geojson") {
|
|||
|
||||
for (auto cache_features : {true, false})
|
||||
{
|
||||
if (!create_index)
|
||||
// unfortunately when using an index or not
|
||||
// caching features we use the bbox grammar
|
||||
// which is not strict (and would be a perf hit if it were strict).
|
||||
// So this is one known hole where invalid data may silently parse okay
|
||||
// refs https://github.com/mapnik/mapnik/issues/3125
|
||||
if (!create_index && cache_features == true)
|
||||
{
|
||||
std::stringstream msg;
|
||||
msg << "testcase: create index " << create_index << " cache_features " << cache_features;
|
||||
|
|
Loading…
Reference in a new issue