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
path: root/editor
diff options
context:
space:
mode:
authorIlya Zverev <zverik@textual.ru>2016-09-19 19:33:24 +0300
committerIlya Zverev <zverik@textual.ru>2016-09-19 19:33:24 +0300
commitc5e0af019f4eca0b65a27623528ae11d77fa52bc (patch)
tree2b50945b387f756a3d060371809243f05b087748 /editor
parent11a23fe8f4a03728612a5565d6b7c4710f87fa96 (diff)
[tests] Extracted osm_auth_test into a separate executable
Diffstat (limited to 'editor')
-rw-r--r--editor/editor_tests/editor_tests.pro1
-rw-r--r--editor/osm_auth_tests/osm_auth_tests.cpp (renamed from editor/editor_tests/osm_auth_test.cpp)0
-rw-r--r--editor/osm_auth_tests/osm_auth_tests.pro18
3 files changed, 18 insertions, 1 deletions
diff --git a/editor/editor_tests/editor_tests.pro b/editor/editor_tests/editor_tests.pro
index cfb2704eda..4ca787853a 100644
--- a/editor/editor_tests/editor_tests.pro
+++ b/editor/editor_tests/editor_tests.pro
@@ -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 \
diff --git a/editor/editor_tests/osm_auth_test.cpp b/editor/osm_auth_tests/osm_auth_tests.cpp
index cb5fc1d622..cb5fc1d622 100644
--- a/editor/editor_tests/osm_auth_test.cpp
+++ b/editor/osm_auth_tests/osm_auth_tests.cpp
diff --git a/editor/osm_auth_tests/osm_auth_tests.pro b/editor/osm_auth_tests/osm_auth_tests.pro
new file mode 100644
index 0000000000..aad9e466e1
--- /dev/null
+++ b/editor/osm_auth_tests/osm_auth_tests.pro
@@ -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 \