diff options
author | Volker Hilsheimer <volker.hilsheimer@nokia.com> | 2009-07-24 14:31:47 (GMT) |
---|---|---|
committer | Volker Hilsheimer <volker.hilsheimer@nokia.com> | 2009-07-24 14:34:01 (GMT) |
commit | 365cbdf74aa0f5933bf938922ebb48fa8e37d8ce (patch) | |
tree | 65cc0a46709a5f845614ac224bddc1b13add95ac /tests/auto/qfiledialog | |
parent | 4d99029334105f2df9f424fd0c4764cce3230ef0 (diff) | |
download | Qt-365cbdf74aa0f5933bf938922ebb48fa8e37d8ce.zip Qt-365cbdf74aa0f5933bf938922ebb48fa8e37d8ce.tar.gz Qt-365cbdf74aa0f5933bf938922ebb48fa8e37d8ce.tar.bz2 |
Make the internal testcase more robust on Windows FS as well
Diffstat (limited to 'tests/auto/qfiledialog')
-rw-r--r-- | tests/auto/qfiledialog/tst_qfiledialog.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/auto/qfiledialog/tst_qfiledialog.cpp b/tests/auto/qfiledialog/tst_qfiledialog.cpp index 78a9d74..c31ecf2 100644 --- a/tests/auto/qfiledialog/tst_qfiledialog.cpp +++ b/tests/auto/qfiledialog/tst_qfiledialog.cpp @@ -2045,7 +2045,12 @@ void tst_QFiledialog::task257579_sideBarWithNonCleanUrls() QCOMPARE(sidebar->urls().count(), 1); QVERIFY(sidebar->urls().first().toLocalFile() != url); QCOMPARE(sidebar->urls().first().toLocalFile(), QDir::cleanPath(url)); + +#ifdef Q_OS_WIN + QCOMPARE(sidebar->model()->index(0,0).data().toString().toLower(), tempDir.dirName().toLower()); +#else QCOMPARE(sidebar->model()->index(0,0).data().toString(), tempDir.dirName()); +#endif //all tests are finished, we can remove the temporary dir QVERIFY(tempDir.rmdir(dirname)); |