summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJason Barron <jbarron@trolltech.com>2009-07-09 14:57:17 (GMT)
committerJason Barron <jbarron@trolltech.com>2009-07-09 14:57:17 (GMT)
commit4cb488fdc147d1ffc6807a825c5ea961404265e9 (patch)
tree23288b49cd6f54f8fca08d0a90807b5d1ff2179a /tests
parentd838143119468d0d6e5998c14054258105fe3fe4 (diff)
parent0ab4319b15a3f5ae1d42841fab4b7db51904d0cb (diff)
downloadQt-4cb488fdc147d1ffc6807a825c5ea961404265e9.zip
Qt-4cb488fdc147d1ffc6807a825c5ea961404265e9.tar.gz
Qt-4cb488fdc147d1ffc6807a825c5ea961404265e9.tar.bz2
Merge commit 'origin/master'
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qfileinfo/tst_qfileinfo.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/qfileinfo/tst_qfileinfo.cpp b/tests/auto/qfileinfo/tst_qfileinfo.cpp
index b40a7dd..d94c7e4 100644
--- a/tests/auto/qfileinfo/tst_qfileinfo.cpp
+++ b/tests/auto/qfileinfo/tst_qfileinfo.cpp
@@ -488,6 +488,9 @@ void tst_QFileInfo::canonicalFilePath()
if (file.link(link)) {
QFileInfo info1("tst_qfileinfo.cpp");
QFileInfo info2(link + QDir::separator() + "tst_qfileinfo.cpp");
+
+ QVERIFY2(info1.exists(), "If this fails, one reason might be the test system has failed to copy the files.");
+ QVERIFY2(info2.exists(), "If this fails, one reason might be the test system has failed to copy the files.");
QCOMPARE(info1.canonicalFilePath(), info2.canonicalFilePath());
QFileInfo info3(link + QDir::separator() + "link.lnk");