summaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/gui/util/qdesktopservices/tst_qdesktopservices.cpp37
1 files changed, 0 insertions, 37 deletions
diff --git a/tests/auto/gui/util/qdesktopservices/tst_qdesktopservices.cpp b/tests/auto/gui/util/qdesktopservices/tst_qdesktopservices.cpp
index 4d95345de9..7c864a078c 100644
--- a/tests/auto/gui/util/qdesktopservices/tst_qdesktopservices.cpp
+++ b/tests/auto/gui/util/qdesktopservices/tst_qdesktopservices.cpp
@@ -28,7 +28,6 @@
#include <QtTest/QtTest>
-#include <qdebug.h>
#include <qdesktopservices.h>
#include <qregularexpression.h>
@@ -39,9 +38,6 @@ class tst_qdesktopservices : public QObject
private slots:
void openUrl();
void handlers();
-#if QT_DEPRECATED_SINCE(5, 0)
- void testDataLocation();
-#endif
};
void tst_qdesktopservices::openUrl()
@@ -87,39 +83,6 @@ void tst_qdesktopservices::handlers()
QCOMPARE(barHandler.lastHandledUrl.toString(), barUrl.toString());
}
-#if defined(Q_OS_UNIX) && !defined(Q_OS_MAC)
-#define Q_XDG_PLATFORM
-#endif
-
-#if QT_DEPRECATED_SINCE(5, 0)
-void tst_qdesktopservices::testDataLocation()
-{
- // This is the one point where QDesktopServices and QStandardPaths differ.
- // QDesktopServices on unix returns "data"/orgname/appname for DataLocation, for Qt4 compat.
- // And the appname in qt4 defaulted to empty, not to argv[0].
- {
- const QString base = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation);
- const QString app = QDesktopServices::storageLocation(QDesktopServices::DataLocation);
-#ifdef Q_XDG_PLATFORM
- QCOMPARE(app, base + "/data//"); // as ugly as in Qt4
-#else
- QCOMPARE(app, base);
-#endif
- }
- QCoreApplication::instance()->setOrganizationName("Qt");
- QCoreApplication::instance()->setApplicationName("QtTest");
- {
- const QString base = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation);
- const QString app = QDesktopServices::storageLocation(QDesktopServices::DataLocation);
-#ifdef Q_XDG_PLATFORM
- QCOMPARE(app, base + "/data/Qt/QtTest");
-#else
- QCOMPARE(app, base + "/Qt/QtTest");
-#endif
- }
-}
-#endif
-
QTEST_MAIN(tst_qdesktopservices)
#include "tst_qdesktopservices.moc"