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/drape
diff options
context:
space:
mode:
authorExMix <rahuba.youri@mapswithme.com>2014-12-16 12:41:22 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:34:57 +0300
commitc37acaa46c976cbf20c59b8f7cea2c9e9baf5098 (patch)
tree0fd178af0fdddc024431192fb3d59725deadb999 /drape
parentfd6415e4f0b9ec5cbbfacc3f8b56b5260aa7c35a (diff)
drape_test linkage fix
Diffstat (limited to 'drape')
-rw-r--r--drape/drape_tests/font_texture_tests.cpp3
-rw-r--r--drape/drape_tests/glyph_mng_tests.cpp3
2 files changed, 2 insertions, 4 deletions
diff --git a/drape/drape_tests/font_texture_tests.cpp b/drape/drape_tests/font_texture_tests.cpp
index 61012a045d..4454b06447 100644
--- a/drape/drape_tests/font_texture_tests.cpp
+++ b/drape/drape_tests/font_texture_tests.cpp
@@ -102,6 +102,5 @@ UNIT_TEST(UploadingGlyphs)
.WillOnce(Invoke(&r, &UploadedRender::glMemoryToQImage));
index.UploadResources(MakeStackRefPointer<Texture>(&tex));
- TestMainLoop loop(bind(&UploadedRender::Render, &r, _1));
- loop.exec("UploadingGlyphs");
+ RunTestLoop("UploadingGlyphs", bind(&UploadedRender::Render, &r, _1));
}
diff --git a/drape/drape_tests/glyph_mng_tests.cpp b/drape/drape_tests/glyph_mng_tests.cpp
index 9c06159d37..10b8278760 100644
--- a/drape/drape_tests/glyph_mng_tests.cpp
+++ b/drape/drape_tests/glyph_mng_tests.cpp
@@ -71,6 +71,5 @@ namespace
UNIT_TEST(GlyphLoadingTest)
{
GlyphRenderer renderer;
- TestMainLoop loop(bind(&GlyphRenderer::RenderGlyphs, &renderer, _1));
- loop.exec("GlyphLoadingTest");
+ RunTestLoop("GlyphLoadingTest", bind(&GlyphRenderer::RenderGlyphs, &renderer, _1));
}