diff --git a/.github/workflows/linux-check.yaml b/.github/workflows/linux-check.yaml index 8c349ab186..2800202aa9 100644 --- a/.github/workflows/linux-check.yaml +++ b/.github/workflows/linux-check.yaml @@ -88,8 +88,6 @@ jobs: -e drape_tests \ -e shaders_tests \ \ - -e routing_tests \ - -e generator_tests \ -e opening_hours_tests \ -e opening_hours_integration_tests \ -e routing_consistency_tests \ diff --git a/routing/base/small_list.hpp b/routing/base/small_list.hpp index a2deca7933..b141984028 100644 --- a/routing/base/small_list.hpp +++ b/routing/base/small_list.hpp @@ -48,4 +48,10 @@ public: */ }; +template +inline std::string DebugPrint(SmallList const & v) +{ + return DebugPrint(static_cast const &>(v)); +} + } // namesapce routing diff --git a/routing/routing_tests/road_graph_nearest_edges_test.cpp b/routing/routing_tests/road_graph_nearest_edges_test.cpp index e51f524c06..f8df9e977c 100644 --- a/routing/routing_tests/road_graph_nearest_edges_test.cpp +++ b/routing/routing_tests/road_graph_nearest_edges_test.cpp @@ -98,19 +98,13 @@ UNIT_TEST(RoadGraph_NearestEdges) IRoadGraph::EdgeListT actualOutgoing; graph.GetOutgoingEdges(crossPos, actualOutgoing); sort(actualOutgoing.begin(), actualOutgoing.end()); - - TEST_EQUAL(expectedOutgoing.size(), actualOutgoing.size(), ()); - for (size_t i = 0; i < expectedOutgoing.size(); ++i) - TEST_EQUAL(expectedOutgoing[i], actualOutgoing[i], ()); + TEST_EQUAL(expectedOutgoing, actualOutgoing, ()); // Check ingoing edges. IRoadGraph::EdgeListT actualIngoing; graph.GetIngoingEdges(crossPos, actualIngoing); sort(actualIngoing.begin(), actualIngoing.end()); - - TEST_EQUAL(expectedOutgoing.size(), actualIngoing.size(), ()); - for (size_t i = 0; i < expectedOutgoing.size(); ++i) - TEST_EQUAL(expectedOutgoing[i], actualIngoing[i], ()); + TEST_EQUAL(expectedIngoing, actualIngoing, ()); } } // namespace routing_test