diff --git a/testing/testingmain.cpp b/testing/testingmain.cpp index 24726f1384..a8d484b6f9 100644 --- a/testing/testingmain.cpp +++ b/testing/testingmain.cpp @@ -21,7 +21,7 @@ # include "platform/platform.hpp" #endif -#ifdef OMIM_UNIT_TEST_WITH_QT_EVENT_LOOP +#if defined(OMIM_UNIT_TEST_WITH_QT_EVENT_LOOP) && !defined(OMIM_OS_IPHONE) #include #ifdef OMIM_OS_MAC // on Mac OS X native run loop works only for QApplication :( #if QT_VERSION < QT_VERSION_CHECK(5, 0, 0) @@ -133,7 +133,7 @@ CommandLineOptions const & GetTestingOptions() int main(int argc, char * argv[]) { -#ifdef OMIM_UNIT_TEST_WITH_QT_EVENT_LOOP +#if defined(OMIM_UNIT_TEST_WITH_QT_EVENT_LOOP) && !defined(OMIM_OS_IPHONE) QAPP theApp(argc, argv); UNUSED_VALUE(theApp); #else