disable "point unitialized" test for boost >= 1.50 (pending reviewing https://github.com/mapnik/mapnik/issues/3218)
This commit is contained in:
parent
4e8bbe48df
commit
c7a964abf6
1 changed files with 24 additions and 21 deletions
|
@ -43,6 +43,8 @@ SECTION("point -- geometry object") {
|
||||||
CHECK( failure == boost::geometry::no_failure );
|
CHECK( failure == boost::geometry::no_failure );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if BOOST_VERSION < 106000
|
||||||
|
|
||||||
SECTION("point unitialized") {
|
SECTION("point unitialized") {
|
||||||
mapnik::geometry::point<double> pt2;
|
mapnik::geometry::point<double> pt2;
|
||||||
CHECK( mapnik::geometry::is_valid(pt2) );
|
CHECK( mapnik::geometry::is_valid(pt2) );
|
||||||
|
@ -53,6 +55,7 @@ SECTION("point unitialized") {
|
||||||
CHECK( mapnik::geometry::is_valid(pt2, failure2) );
|
CHECK( mapnik::geometry::is_valid(pt2, failure2) );
|
||||||
CHECK( failure2 == boost::geometry::no_failure );
|
CHECK( failure2 == boost::geometry::no_failure );
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#if BOOST_VERSION >= 106000
|
#if BOOST_VERSION >= 106000
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue