diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2011-01-19 20:36:04 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2011-01-19 20:36:04 (GMT) |
commit | a209b8c2e3e7f2baac5a34c43f290f6397ddd044 (patch) | |
tree | 7040f534f6320f96466bb7e4c3d3397a5d2f8ed1 /tests | |
parent | 456800e64677a3c1c09af36cdea052a1ae986d14 (diff) | |
parent | f250b8717cc35f55d1b6e1965419eca5334d77d9 (diff) | |
download | Qt-a209b8c2e3e7f2baac5a34c43f290f6397ddd044.zip Qt-a209b8c2e3e7f2baac5a34c43f290f6397ddd044.tar.gz Qt-a209b8c2e3e7f2baac5a34c43f290f6397ddd044.tar.bz2 |
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into 4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1:
Use SRCDIR as a base path for the test data.
Add the test data to the INSTALLS target
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qlayout/qlayout.pro | 6 | ||||
-rw-r--r-- | tests/auto/qlayout/tst_qlayout.cpp | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/tests/auto/qlayout/qlayout.pro b/tests/auto/qlayout/qlayout.pro index c99f1d9..d3b76e3 100644 --- a/tests/auto/qlayout/qlayout.pro +++ b/tests/auto/qlayout/qlayout.pro @@ -10,5 +10,11 @@ wince*|symbian: { addFiles.sources = baseline addFiles.path = . DEPLOYMENT += addFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" + + test_data.files = baseline/* + test_data.path = $${target.path}/baseline + INSTALLS += test_data } diff --git a/tests/auto/qlayout/tst_qlayout.cpp b/tests/auto/qlayout/tst_qlayout.cpp index 65eae55..3090ebb 100644 --- a/tests/auto/qlayout/tst_qlayout.cpp +++ b/tests/auto/qlayout/tst_qlayout.cpp @@ -156,7 +156,8 @@ void tst_QLayout::smartMaxSize() { QVector<int> expectedWidths; - QFile f(QLatin1String("baseline/smartmaxsize")); + QFile f(QLatin1String(SRCDIR "/baseline/smartmaxsize")); + QCOMPARE(f.open(QIODevice::ReadOnly | QIODevice::Text), true); QTextStream stream(&f); |