diff options
author | Jason Barron <jbarron@trolltech.com> | 2009-07-09 14:57:17 (GMT) |
---|---|---|
committer | Jason Barron <jbarron@trolltech.com> | 2009-07-09 14:57:17 (GMT) |
commit | 4cb488fdc147d1ffc6807a825c5ea961404265e9 (patch) | |
tree | 23288b49cd6f54f8fca08d0a90807b5d1ff2179a /tests | |
parent | d838143119468d0d6e5998c14054258105fe3fe4 (diff) | |
parent | 0ab4319b15a3f5ae1d42841fab4b7db51904d0cb (diff) | |
download | Qt-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.cpp | 3 |
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"); |