summaryrefslogtreecommitdiffstats
path: root/tests/auto/qscriptjstestsuite
diff options
context:
space:
mode:
authorKent Hansen <khansen@trolltech.com>2009-06-15 13:54:44 +0200
committerKent Hansen <khansen@trolltech.com>2009-06-15 13:54:44 +0200
commit86b8daf2a0348be875cbd0b330ab7773f55a35dc (patch)
tree4e72cd1169b92a6117e654f277b69d5c754cf882 /tests/auto/qscriptjstestsuite
parentf3b534e5cdbcf7ed1bdd0dc3c258d26a8a3a87ab (diff)
make qscript unit tests not crash when test files are not found
Diffstat (limited to 'tests/auto/qscriptjstestsuite')
-rw-r--r--tests/auto/qscriptjstestsuite/tst_qscriptjstestsuite.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/auto/qscriptjstestsuite/tst_qscriptjstestsuite.cpp b/tests/auto/qscriptjstestsuite/tst_qscriptjstestsuite.cpp
index fbb0ba5960..4807b3fe42 100644
--- a/tests/auto/qscriptjstestsuite/tst_qscriptjstestsuite.cpp
+++ b/tests/auto/qscriptjstestsuite/tst_qscriptjstestsuite.cpp
@@ -390,9 +390,9 @@ int tst_Suite::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
tst_Suite::tst_Suite()
{
testsDir = QDir(".");
- if (!testsDir.cd("tests")) {
+ bool testsFound = testsDir.cd("tests");
+ if (!testsFound) {
qWarning("*** no tests/ dir!");
- return;
}
QString willFixInNextReleaseMessage = QString::fromLatin1("Will fix in next release");
@@ -802,7 +802,9 @@ tst_Suite::tst_Suite()
// don't execute any tests on slow machines
#if !defined(Q_OS_IRIX)
// do all the test suites
- QFileInfoList testSuiteDirInfos = testsDir.entryInfoList(QDir::AllDirs | QDir::NoDotAndDotDot);
+ QFileInfoList testSuiteDirInfos;
+ if (testsFound)
+ testSuiteDirInfos = testsDir.entryInfoList(QDir::AllDirs | QDir::NoDotAndDotDot);
foreach (QFileInfo tsdi, testSuiteDirInfos) {
QDir testSuiteDir(tsdi.absoluteFilePath());
// do all the dirs in the test suite