summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJason Barron <jbarron@trolltech.com>2009-08-25 08:51:44 (GMT)
committerJason Barron <jbarron@trolltech.com>2009-08-25 08:51:44 (GMT)
commit8cee5b06aa0ecde7ba0a53c8a46070af3691db1b (patch)
tree4cd7f5ffb8b31af78f095c40fa6021a0331fde3b /tests
parentf729015e1f44065b1b1911b65ba3fddd35d5545b (diff)
parentf049061a7b479c957240ec8e4fd91d1e9463b071 (diff)
downloadQt-8cee5b06aa0ecde7ba0a53c8a46070af3691db1b.zip
Qt-8cee5b06aa0ecde7ba0a53c8a46070af3691db1b.tar.gz
Qt-8cee5b06aa0ecde7ba0a53c8a46070af3691db1b.tar.bz2
Merge commit 'origin/master' into 4.6
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qdir/tst_qdir.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qdir/tst_qdir.cpp b/tests/auto/qdir/tst_qdir.cpp
index 13e8c95..c00ca7a 100644
--- a/tests/auto/qdir/tst_qdir.cpp
+++ b/tests/auto/qdir/tst_qdir.cpp
@@ -1262,7 +1262,7 @@ void tst_QDir::homePath()
#ifdef Q_OS_UNIX
if (strHome.length() > 1) // root dir = "/"
QVERIFY(!strHome.endsWith('/'));
-#elif defined(Q_OS_WIN) || defined(Q_OS_SYMBIAN)
+#elif defined(Q_OS_WIN)
if (strHome.length() > 3) // root dir = "c:/"; "//" is not really valid...
QVERIFY(!strHome.endsWith('/'));
#endif
@@ -1286,7 +1286,7 @@ void tst_QDir::tempPath()
#ifdef Q_OS_UNIX
if (path.length() > 1) // root dir = "/"
QVERIFY(!path.endsWith('/'));
-#elif defined(Q_OS_WIN) || defined(Q_OS_SYMBIAN)
+#elif defined(Q_OS_WIN)
if (path.length() > 3) // root dir = "c:/"; "//" is not really valid...
QVERIFY(!path.endsWith('/'));
#endif