summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew den Exter <andrew.den-exter@nokia.com>2012-02-01 16:17:17 +1000
committerAndrew den Exter <andrew.den-exter@nokia.com>2012-02-01 07:53:56 +0100
commit9fad486e88b12c232f9a4a08a3aedf7d6f61913b (patch)
tree743fb53d543048ec16f9034946e6dee0987facc7
parent082cc5aba6ea7eed13fc521b26f005c71970aa27 (diff)
Remove Symbian specific test.
The test was failing because of the deprecated second argument to QSKIP, since the test is no longer relevant the whole thing can be removed instead of just the argument. Change-Id: I3cf7d4c53723825ebc69e3d51cb51dab04bd2e18 Reviewed-by: Matthew Vogt <matthew.vogt@nokia.com>
-rw-r--r--tests/auto/declarative/qdeclarativemoduleplugin/tst_qdeclarativemoduleplugin.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/auto/declarative/qdeclarativemoduleplugin/tst_qdeclarativemoduleplugin.cpp b/tests/auto/declarative/qdeclarativemoduleplugin/tst_qdeclarativemoduleplugin.cpp
index f7a4075b..0d74d1bf 100644
--- a/tests/auto/declarative/qdeclarativemoduleplugin/tst_qdeclarativemoduleplugin.cpp
+++ b/tests/auto/declarative/qdeclarativemoduleplugin/tst_qdeclarativemoduleplugin.cpp
@@ -70,14 +70,8 @@ private slots:
void remoteImportWithUnquotedUri();
void versionNotInstalled();
void versionNotInstalled_data();
- void importPath();
};
-#ifdef Q_OS_SYMBIAN
-// In Symbian OS test data is located in applications private dir
-#define SRCDIR "."
-#endif
-
#define VERIFY_ERRORS(errorfile) \
if (!errorfile) { \
if (qgetenv("DEBUG") != "" && !component.errors().isEmpty()) \
@@ -309,28 +303,6 @@ void tst_qdeclarativemoduleplugin::versionNotInstalled()
VERIFY_ERRORS(errorFile.toLatin1().constData());
}
-void tst_qdeclarativemoduleplugin::importPath()
-{
-#ifndef Q_OS_SYMBIAN
- QSKIP("Import path order testing for Symbian only", SkipAll);
-#else
- QDeclarativeEngine engine;
- QStringList imports = engine.importPathList();
- QString installImportsPath = QDir::cleanPath(QLibraryInfo::location(QLibraryInfo::ImportsPath));
- QString driveOrder(QLatin1String("ZABCDEFGHIJKLMNOPQRSTUVWXY"));
- int lastOrder = 30;
- foreach(QString import, imports)
- {
- if (import.endsWith(installImportsPath))
- {
- int order = driveOrder.indexOf(import[0]);
- QVERIFY(order < lastOrder);
- lastOrder = order;
- }
- }
- QVERIFY(lastOrder != 30);
-#endif
-}
QTEST_MAIN(tst_qdeclarativemoduleplugin)