forked from organicmaps/organicmaps
Added routing_integration_tests
This commit is contained in:
parent
9e5fc56291
commit
61d10c1df1
3 changed files with 67 additions and 2 deletions
|
@ -90,4 +90,6 @@ set(
|
|||
|
||||
add_library(${PROJECT_NAME} ${SRC})
|
||||
omim_add_test_subdirectory(routing_tests)
|
||||
omim_add_test_subdirectory(routing_integration_tests)
|
||||
|
||||
|
||||
|
|
63
routing/routing_integration_tests/CMakeLists.txt
Normal file
63
routing/routing_integration_tests/CMakeLists.txt
Normal file
|
@ -0,0 +1,63 @@
|
|||
# This subproject implements integration tests.
|
||||
# This tests are launched on the whole world dataset.
|
||||
|
||||
# It is recommended to place tests here in the following cases:
|
||||
# - tests are written to be launch on the whole world dataset;
|
||||
# - tests covers significant number of subsystems;
|
||||
|
||||
project(routing_integration_tests)
|
||||
|
||||
set(
|
||||
SRC
|
||||
bicycle_route_test.cpp
|
||||
bicycle_turn_test.cpp
|
||||
cross_section_tests.cpp
|
||||
get_altitude_test.cpp
|
||||
online_cross_tests.cpp
|
||||
osrm_route_test.cpp
|
||||
osrm_street_names_test.cpp
|
||||
osrm_turn_test.cpp
|
||||
pedestrian_route_test.cpp
|
||||
routing_test_tools.cpp
|
||||
routing_test_tools.hpp
|
||||
)
|
||||
|
||||
# if (APPLE)
|
||||
# target_compile_options(${PROJECT_NAME} PUBLIC "-fobjc-arc")
|
||||
#endif()
|
||||
|
||||
|
||||
omim_add_test(${PROJECT_NAME} ${SRC})
|
||||
omim_link_libraries(
|
||||
${PROJECT_NAME}
|
||||
map
|
||||
routing
|
||||
search
|
||||
storage
|
||||
indexer
|
||||
editor
|
||||
platform
|
||||
oauthcpp
|
||||
geometry
|
||||
coding
|
||||
base
|
||||
osrm
|
||||
jansson
|
||||
protobuf
|
||||
tomcrypt
|
||||
succinct
|
||||
stats_client
|
||||
pugixml
|
||||
opening_hours
|
||||
${Qt5Core_LIBRARIES}
|
||||
${LIBZ}
|
||||
)
|
||||
|
||||
if (PLATFORM_MAC)
|
||||
omim_link_libraries(
|
||||
${PROJECT_NAME}
|
||||
"-framework Cocoa"
|
||||
"-framework IOKit"
|
||||
"-framework SystemConfiguration"
|
||||
)
|
||||
endif()
|
|
@ -31,9 +31,9 @@ omim_link_libraries(
|
|||
routing
|
||||
indexer
|
||||
platform_tests_support
|
||||
oauthcpp
|
||||
platform
|
||||
editor
|
||||
platform
|
||||
oauthcpp
|
||||
geometry
|
||||
coding
|
||||
base
|
||||
|
|
Loading…
Add table
Reference in a new issue