diff --git a/test/algorithms/buffer/linestring_buffer.cpp b/test/algorithms/buffer/linestring_buffer.cpp index 173a5746c..078ca3f21 100644 --- a/test/algorithms/buffer/linestring_buffer.cpp +++ b/test/algorithms/buffer/linestring_buffer.cpp @@ -48,11 +48,11 @@ static std::string const aimes171 = "LINESTRING(-2.393161 52.265087,-2.393002 52 static std::string const aimes181 = "LINESTRING(-2.320686 52.43505,-2.320678 52.435016,-2.320697 52.434978,-2.3207 52.434977,-2.320741 52.434964,-2.320807 52.434964,-2.320847 52.434986,-2.320903 52.435022)"; -template +template void test_all() { typedef bg::model::linestring

linestring; - typedef bg::model::polygon

polygon; + typedef bg::model::polygon polygon; bg::strategy::buffer::join_miter join_miter; bg::strategy::buffer::join_round join_round(100); @@ -178,7 +178,8 @@ void test_all() int test_main(int, char* []) { - test_all >(); + test_all >(); + test_all >(); //test_all >(); return 0; } diff --git a/test/algorithms/buffer/multi_linestring_buffer.cpp b/test/algorithms/buffer/multi_linestring_buffer.cpp index 3aadf713d..c36a3a2e4 100644 --- a/test/algorithms/buffer/multi_linestring_buffer.cpp +++ b/test/algorithms/buffer/multi_linestring_buffer.cpp @@ -22,12 +22,12 @@ static std::string const degenerate3 = "MULTILINESTRING((5 5),(9 9),(4 10))"; static std::string const degenerate4 = "MULTILINESTRING((5 5,5 5),(9 9,9 9,10 10,9 9,9 9,9 9),(4 10,4 10,3 11,4 12,3 11,4 10,4 10))"; -template +template void test_all() { typedef bg::model::linestring

linestring; typedef bg::model::multi_linestring multi_linestring_type; - typedef bg::model::polygon

polygon; + typedef bg::model::polygon polygon; bg::strategy::buffer::join_miter join_miter; bg::strategy::buffer::join_round join_round(100); @@ -67,7 +67,8 @@ void test_all() int test_main(int, char* []) { - test_all >(); + test_all >(); + test_all >(); return 0; } diff --git a/test/algorithms/buffer/multi_point_buffer.cpp b/test/algorithms/buffer/multi_point_buffer.cpp index 148292ef4..da0efc3a7 100644 --- a/test/algorithms/buffer/multi_point_buffer.cpp +++ b/test/algorithms/buffer/multi_point_buffer.cpp @@ -21,12 +21,10 @@ static std::string const multipoint_a = "MULTIPOINT((39 44),(38 37),(41 29),(15 static std::string const multipoint_b = "MULTIPOINT((5 56),(98 67),(20 7),(58 60),(10 4),(75 68),(61 68),(75 62),(92 26),(74 6),(67 54),(20 43),(63 30),(45 7))"; -template +template void test_all() { - //std::cout << typeid(bg::coordinate_type

::type).name() << std::endl; - - typedef bg::model::polygon

polygon; + typedef bg::model::polygon polygon; typedef bg::model::multi_point

multi_point_type; bg::strategy::buffer::join_miter join_miter; @@ -185,9 +183,8 @@ void test_growth(int n, int distance_count) int test_main(int, char* []) { - //std::cout << std::setprecision(6); - //test_all >(); - test_all >(); + test_all >(); + test_all >(); #ifdef BOOST_GEOMETRY_BUFFER_TEST_GROWTH diff --git a/test/algorithms/buffer/point_buffer.cpp b/test/algorithms/buffer/point_buffer.cpp index ff68b9c52..a5f1b979b 100644 --- a/test/algorithms/buffer/point_buffer.cpp +++ b/test/algorithms/buffer/point_buffer.cpp @@ -7,29 +7,15 @@ // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) -//#define BOOST_GEOMETRY_DEBUG_WITH_MAPPER -//#define BOOST_GEOMETRY_DEBUG_ASSEMBLE -//#define BOOST_GEOMETRY_DEBUG_IDENTIFIER - -#include - -#include -#include - -#include - -#include -#include - #include static std::string const simplex = "POINT(5 5)"; -template +template void test_all() { - typedef bg::model::polygon

polygon; + typedef bg::model::polygon polygon; bg::strategy::buffer::join_miter join_miter; bg::strategy::buffer::end_flat end_flat; @@ -44,8 +30,7 @@ void test_all() int test_main(int, char* []) { - //std::cout << std::setprecision(6); - //test_all >(); - test_all >(); + test_all >(); + test_all >(); return 0; }