From 8dbf49350de70a2caf7c8ae32e3b1d66a9f5d0f1 Mon Sep 17 00:00:00 2001 From: Yury Melnichek Date: Sat, 10 Sep 2011 00:40:20 +0200 Subject: [PATCH] Commit useless logging in geometry_tests. --- geometry/geometry_tests/region2d_binary_op_test.cpp | 2 +- geometry/geometry_tests/simplification_test.cpp | 4 ++-- 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 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)