summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativepixmapcache
diff options
context:
space:
mode:
authorAndrew den Exter <andrew.den-exter@nokia.com>2012-02-21 11:01:51 +1000
committerQt by Nokia <qt-info@nokia.com>2012-02-22 00:44:07 +0100
commit9183957619ede36af59bc058898b98c95c66967e (patch)
treebd9c57e814d42cc6c4de168ac325ab43ea027ce3 /tests/auto/declarative/qdeclarativepixmapcache
parent650a8ccc21f8e65730afb195b05790e3b3f9985f (diff)
Fix build issues related to QT_NO_*MODULE* defines.
The QT_NO_XMLPATTERNS and QT_NO_CONCURRENT defines don't exist in Qt5 check for the existance of the modules with QT_XMLPATTERNS_LIB and QT_CONCURRENT_LIB instead of their absence with the old defines. Change-Id: I52bc9932294fe4564e58d06766301e2a0c41f15c Reviewed-by: Matthew Vogt <matthew.vogt@nokia.com> Reviewed-by: Martin Jones <martin.jones@nokia.com>
Diffstat (limited to 'tests/auto/declarative/qdeclarativepixmapcache')
-rw-r--r--tests/auto/declarative/qdeclarativepixmapcache/qdeclarativepixmapcache.pro4
-rw-r--r--tests/auto/declarative/qdeclarativepixmapcache/tst_qdeclarativepixmapcache.cpp8
2 files changed, 3 insertions, 9 deletions
diff --git a/tests/auto/declarative/qdeclarativepixmapcache/qdeclarativepixmapcache.pro b/tests/auto/declarative/qdeclarativepixmapcache/qdeclarativepixmapcache.pro
index 7f888b70..d7ec8c87 100644
--- a/tests/auto/declarative/qdeclarativepixmapcache/qdeclarativepixmapcache.pro
+++ b/tests/auto/declarative/qdeclarativepixmapcache/qdeclarativepixmapcache.pro
@@ -23,7 +23,3 @@ symbian: {
# LIBS += -lgcov
CONFIG += parallel_test
-
-
-# XXX: Remove when issues with QtConcurrent are resolved.
-DEFINES *= QT_NO_CONCURRENT
diff --git a/tests/auto/declarative/qdeclarativepixmapcache/tst_qdeclarativepixmapcache.cpp b/tests/auto/declarative/qdeclarativepixmapcache/tst_qdeclarativepixmapcache.cpp
index 9682f4da..21f92359 100644
--- a/tests/auto/declarative/qdeclarativepixmapcache/tst_qdeclarativepixmapcache.cpp
+++ b/tests/auto/declarative/qdeclarativepixmapcache/tst_qdeclarativepixmapcache.cpp
@@ -46,7 +46,7 @@
#include <QNetworkReply>
#include "testhttpserver.h"
-#ifndef QT_NO_CONCURRENT
+#ifdef QT_CONCURRENT_LIB
#include <qtconcurrentrun.h>
#include <qfuture.h>
#endif
@@ -78,7 +78,7 @@ private slots:
void massive();
void cancelcrash();
void shrinkcache();
-#ifndef QT_NO_CONCURRENT
+#ifdef QT_CONCURRENT_LIB
void networkCrash();
#endif
private:
@@ -360,7 +360,7 @@ void tst_qdeclarativepixmapcache::shrinkcache()
}
}
-#ifndef QT_NO_CONCURRENT
+#ifdef QT_CONCURRENT_LIB
void createNetworkServer()
{
@@ -371,7 +371,6 @@ void createNetworkServer()
eventLoop.exec();
}
-#ifndef QT_NO_CONCURRENT
// QT-3957
void tst_qdeclarativepixmapcache::networkCrash()
{
@@ -386,7 +385,6 @@ void tst_qdeclarativepixmapcache::networkCrash()
}
future.cancel();
}
-#endif
#endif