Skip to content

Commit

Permalink
Until #34 is resolved commenting out the Multipolygon validity tests
Browse files Browse the repository at this point in the history
  • Loading branch information
flippmoke committed Oct 6, 2016
1 parent 9dab09d commit 04fa7f6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion tests/fixture-tester.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,8 @@ int main(int argc, char* const argv[]) {
return -1;
}
}
/*
* uncomment once https://svn.boost.org/trac/boost/ticket/12503 is resolved
std::string message;
if (!boost::geometry::is_valid(solution, message)) {
std::clog << std::endl;
Expand All @@ -220,7 +222,7 @@ int main(int argc, char* const argv[]) {
log_ring(solution);
return -1;
}

*/
char write_buffer[65536];
FileWriteStream out_stream(stdout, write_buffer, sizeof(write_buffer));
Writer<FileWriteStream> writer(out_stream);
Expand Down
4 changes: 3 additions & 1 deletion tests/fuzzer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,8 @@ int main() {
return -1;
}
}
/*
* uncomment once https://svn.boost.org/trac/boost/ticket/12503 is resolved
std::string message;
if (!boost::geometry::is_valid(solution, message)) {
std::clog << std::endl;
Expand All @@ -258,7 +260,7 @@ int main() {
create_test(polygon, seed, iteration);
return -1;
}

*/
check_cross_ring(solution);
}
}
Expand Down

0 comments on commit 04fa7f6

Please sign in to comment.