forked from organicmaps/organicmaps
[mac] Use QApplication in unit tests instead of QCoreApplication, because on Mac QCoreApplication has not implemented correctly event loop
This commit is contained in:
parent
1f3b207c88
commit
de210c44b4
1 changed files with 10 additions and 2 deletions
|
@ -5,9 +5,16 @@
|
|||
#include "../std/iostream.hpp"
|
||||
#include "../std/string.hpp"
|
||||
#include "../std/vector.hpp"
|
||||
#include "../std/target_os.hpp"
|
||||
|
||||
#ifdef OMIM_UNIT_TEST_WITH_QT_EVENT_LOOP
|
||||
#include <QCoreApplication>
|
||||
#ifdef OMIM_OS_MAC // on Mac OS X native run loop works only for QApplication :(
|
||||
#include <QApplication>
|
||||
#define QAPP QApplication
|
||||
#else
|
||||
#include <QCoreApplication>
|
||||
#define QAPP QCoreApplication
|
||||
#endif
|
||||
#endif
|
||||
|
||||
static bool g_bLastTestOK = true;
|
||||
|
@ -15,7 +22,8 @@ static bool g_bLastTestOK = true;
|
|||
int main(int argc, char * argv[])
|
||||
{
|
||||
#ifdef OMIM_UNIT_TEST_WITH_QT_EVENT_LOOP
|
||||
QCoreApplication theApp(argc, argv);
|
||||
QAPP theApp(argc, argv);
|
||||
UNUSED_VALUE(theApp);
|
||||
#else
|
||||
UNUSED_VALUE(argc);
|
||||
UNUSED_VALUE(argv);
|
||||
|
|
Loading…
Add table
Reference in a new issue