Move "heavy" tests to separate executable mwm_tests.

This commit is contained in:
vng 2013-06-24 18:53:50 +03:00 committed by Alex Zolotarev
parent d2d74c7441
commit 8a6201dead
5 changed files with 26 additions and 3 deletions

View file

@ -23,8 +23,6 @@ SOURCES += \
../../testing/testingmain.cpp \
kmz_unarchive_test.cpp \
navigator_test.cpp \
# map_foreach_test.cpp \
# multithread_map_test.cpp \
bookmarks_test.cpp \
geourl_test.cpp \
measurement_tests.cpp \

View file

@ -0,0 +1,25 @@
# Map library tests.
TARGET = mwm_tests
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
ROOT_DIR = ../..
DEPENDENCIES = map gui search storage graphics indexer platform anim geometry coding base \
freetype fribidi expat protobuf tomcrypt jansson zlib
include($$ROOT_DIR/common.pri)
QT *= core opengl
win32* {
LIBS *= -lShell32 -lOpengl32
win32-g++: LIBS *= -lpthread
}
macx*: LIBS *= "-framework Foundation" "-framework IOKit"
SOURCES += \
../../testing/testingmain.cpp \
mwm_foreach_test.cpp \
multithread_mwm_test.cpp \

View file

@ -20,7 +20,7 @@ SUBDIRS = 3party \
gui \
storage storage/storage_tests \
search search/search_tests \
map map/map_tests map/benchmark_tool \
map map/map_tests map/benchmark_tool map/mwm_tests\
generator generator/generator_tests \
generator/generator_tool \
qt_tstfrm \