disable "point unitialized" test for boost >= 1.50 (pending reviewing https://github.com/mapnik/mapnik/issues/3218)

This commit is contained in:
artemp 2016-01-27 14:48:57 +01:00
parent 4e8bbe48df
commit c7a964abf6

View file

@ -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