Merge pull request #4319 from Zverik/auth_separate

[tests] Extracted osm_auth_test into a separate executable
This commit is contained in:
therearesomewhocallmetim 2016-09-20 16:33:19 +04:00 committed by GitHub
commit e646b270bd
4 changed files with 22 additions and 1 deletions

View file

@ -19,7 +19,6 @@ SOURCES += \
editor_config_test.cpp \
editor_notes_test.cpp \
opening_hours_ui_test.cpp \
osm_auth_test.cpp \
osm_feature_matcher_test.cpp \
server_api_test.cpp \
ui2oh_test.cpp \

View file

@ -0,0 +1,18 @@
TARGET = osm_auth_tests
CONFIG += console warn_on
CONFIG -= app_bundle
TEMPLATE = app
ROOT_DIR = ../..
DEPENDENCIES = editor platform_tests_support platform geometry coding base \
stats_client pugixml oauthcpp tomcrypt
include($$ROOT_DIR/common.pri)
QT *= core
HEADERS += \
SOURCES += \
$$ROOT_DIR/testing/testingmain.cpp \
osm_auth_tests.cpp \

View file

@ -223,6 +223,10 @@ SUBDIRS = 3party base coding geometry editor indexer routing search
editor_tests.depends = 3party base coding geometry platform editor
SUBDIRS *= editor_tests
osm_auth_tests.subdir = editor/osm_auth_tests
osm_auth_tests.depends = 3party base coding geometry platform editor
SUBDIRS *= osm_auth_tests
SUBDIRS *= qt_tstfrm
drape_tests.subdir = drape/drape_tests