Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYury Melnichek <melnichek@malinovka.local>2011-09-10 02:40:20 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:23:32 +0300
commit8dbf49350de70a2caf7c8ae32e3b1d66a9f5d0f1 (patch)
tree44e85b3282ccdf980f85baade982c9c5ba391e05 /geometry
parent208e163e75cce98b6c86bae494e122ccbb90ed74 (diff)
Commit useless logging in geometry_tests.
Diffstat (limited to 'geometry')
-rw-r--r--geometry/geometry_tests/region2d_binary_op_test.cpp2
-rw-r--r--geometry/geometry_tests/simplification_test.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/geometry/geometry_tests/region2d_binary_op_test.cpp b/geometry/geometry_tests/region2d_binary_op_test.cpp
index 459e0dc0c2..0c29b13aa5 100644
--- a/geometry/geometry_tests/region2d_binary_op_test.cpp
+++ b/geometry/geometry_tests/region2d_binary_op_test.cpp
@@ -66,7 +66,7 @@ UNIT_TEST(RegionDifference_Smoke)
TEST_EQUAL(res.size(), 1, ());
TEST_EQUAL(res[0].GetRect(), r2.GetRect(), ());
- LOG(LINFO, (res[0]));
+ // LOG(LINFO, (res[0]));
}
{
diff --git a/geometry/geometry_tests/simplification_test.cpp b/geometry/geometry_tests/simplification_test.cpp
index 58e7a573dc..ee874b7c9c 100644
--- a/geometry/geometry_tests/simplification_test.cpp
+++ b/geometry/geometry_tests/simplification_test.cpp
@@ -55,7 +55,7 @@ void TestSimplificationOfPoly(m2::PointD const * points, size_t count, SimplifyF
{
vector<m2::PointD> result;
simplifyFn(points, points + count, epsilon, DistanceF(), MakeBackInsertFunctor(result));
- LOG(LINFO, ("eps:", epsilon, "size:", result.size()));
+ // LOG(LINFO, ("eps:", epsilon, "size:", result.size()));
TEST_GREATER(result.size(), 1, ());
TEST_EQUAL(result.front(), points[0], (epsilon));
@@ -69,7 +69,7 @@ void TestSimplificationOfPoly(m2::PointD const * points, size_t count, SimplifyF
UNIT_TEST(Simplification_TestDataIsCorrect)
{
TEST_GREATER_OR_EQUAL(LargePolylineTestData::m_Size, 3, ());
- LOG(LINFO, ("Polyline test size:", LargePolylineTestData::m_Size));
+ // LOG(LINFO, ("Polyline test size:", LargePolylineTestData::m_Size));
}
UNIT_TEST(Simplification_DP_Smoke)