summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/platformquirks.h15
-rw-r--r--tests/auto/qgraphicswidget/tst_qgraphicswidget.cpp7
-rw-r--r--tests/benchmarks/gui/graphicsview/functional/GraphicsViewBenchmark/main.cpp28
-rw-r--r--tests/manual/bearerex/bearerex.h2
4 files changed, 12 insertions, 40 deletions
diff --git a/tests/auto/platformquirks.h b/tests/auto/platformquirks.h
index 2c16578914..bf2f843502 100644
--- a/tests/auto/platformquirks.h
+++ b/tests/auto/platformquirks.h
@@ -67,9 +67,7 @@ struct PlatformQuirks
*/
static inline bool isImageLoaderImprecise()
{
-#ifdef Q_WS_MAEMO_5
- return true;
-#elif defined(Q_WS_X11)
+#if defined(Q_WS_X11)
// ### this is a very bad assumption, we should really check the version of libjpeg
return X11->desktopEnvironment == DE_MEEGO_COMPOSITOR;
#else
@@ -82,9 +80,7 @@ struct PlatformQuirks
*/
static inline bool isAutoMaximizing()
{
-#ifdef Q_WS_MAEMO_5
- return true;
-#elif defined(Q_WS_X11)
+#if defined(Q_WS_X11)
return X11->desktopEnvironment == DE_MEEGO_COMPOSITOR;
#else
return false;
@@ -93,9 +89,7 @@ struct PlatformQuirks
static inline bool haveMouseCursor()
{
-#ifdef Q_WS_MAEMO_5
- return false;
-#elif defined(Q_WS_X11)
+#if defined(Q_WS_X11)
return X11->desktopEnvironment != DE_MEEGO_COMPOSITOR;
#else
return true;
@@ -106,9 +100,6 @@ struct PlatformQuirks
The autotests have to know which fileType is the default on the system*/
static inline MediaFileTypes defaultMediaFileType()
{
-#ifdef Q_WS_MAEMO_5
- return PlatformQuirks::mp3;
-#endif
#ifdef Q_WS_X11
// ### very bad assumption
if (X11->desktopEnvironment == DE_MEEGO_COMPOSITOR)
diff --git a/tests/auto/qgraphicswidget/tst_qgraphicswidget.cpp b/tests/auto/qgraphicswidget/tst_qgraphicswidget.cpp
index 1df9d38bb8..ce65f4ef70 100644
--- a/tests/auto/qgraphicswidget/tst_qgraphicswidget.cpp
+++ b/tests/auto/qgraphicswidget/tst_qgraphicswidget.cpp
@@ -1111,10 +1111,6 @@ void tst_QGraphicsWidget::initStyleOption_data()
// void initStyleOption(QStyleOption* option) const public
void tst_QGraphicsWidget::initStyleOption()
{
-#ifdef Q_WS_MAEMO_5
- QSKIP("The test passes, but it doesn't work when the display is in energy saving mode", SkipAll);
-#endif
-
QGraphicsScene scene;
QGraphicsView view(&scene);
view.show();
@@ -1777,9 +1773,6 @@ void tst_QGraphicsWidget::verifyFocusChain()
void tst_QGraphicsWidget::updateFocusChainWhenChildDie()
{
-#ifdef Q_WS_MAEMO_5
- QSKIP("On Maemo 5 the Display Manager is shown on Window change, so the test won't work", SkipAll);
-#endif
QGraphicsScene scene;
QGraphicsView view(&scene);
view.show();
diff --git a/tests/benchmarks/gui/graphicsview/functional/GraphicsViewBenchmark/main.cpp b/tests/benchmarks/gui/graphicsview/functional/GraphicsViewBenchmark/main.cpp
index 316dadd01b..e8019a946a 100644
--- a/tests/benchmarks/gui/graphicsview/functional/GraphicsViewBenchmark/main.cpp
+++ b/tests/benchmarks/gui/graphicsview/functional/GraphicsViewBenchmark/main.cpp
@@ -321,17 +321,11 @@ void tst_GraphicsViewBenchmark::initTestCase()
if (mSettings->size().width() > 0 && mSettings->size().height() > 0) {
mMainView->resize(mSettings->size().width(), mSettings->size().height());
mMainView->show();
- } else {
-#if defined(Q_WS_MAEMO_5)
+ } else if (QApplication::desktop()->width() < 360 || QApplication::desktop()->height() < 640) {
mMainView->showFullScreen();
-#else
- if (QApplication::desktop()->width() < 360 || QApplication::desktop()->height() < 640) {
- mMainView->showFullScreen();
- } else {
- mMainView->resize(360, 640);
- mMainView->show();
- }
-#endif
+ } else {
+ mMainView->resize(360, 640);
+ mMainView->show();
}
mDataGenerator.Reset();
@@ -779,17 +773,11 @@ int main(int argc, char *argv[])
if (settings.size().width() > 0 && settings.size().height() > 0) {
view.resize(settings.size().width(), settings.size().height());
view.show();
- } else {
-#if defined(Q_WS_MAEMO_5)
+ } else if (QApplication::desktop()->width() < 360 || QApplication::desktop()->height() < 640) {
view.showFullScreen();
-#else
- if (QApplication::desktop()->width() < 360 || QApplication::desktop()->height() < 640) {
- view.showFullScreen();
- } else {
- view.resize(360, 640);
- view.show();
- }
-#endif
+ } else {
+ view.resize(360, 640);
+ view.show();
}
returnValue = app.exec();
} else {
diff --git a/tests/manual/bearerex/bearerex.h b/tests/manual/bearerex/bearerex.h
index f7b4b83d95..22c24cb42c 100644
--- a/tests/manual/bearerex/bearerex.h
+++ b/tests/manual/bearerex/bearerex.h
@@ -46,7 +46,7 @@
#include "ui_detailedinfodialog.h"
-#if defined(Q_WS_MAEMO_5) || defined(Q_WS_MAEMO_6)
+#if defined(Q_WS_MAEMO_6)
#include "ui_bearerex_maemo.h"
#include "ui_sessiondialog_maemo.h"
#else