diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2010-03-05 01:19:30 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2010-03-05 01:19:30 (GMT) |
commit | 2a2ad1e632352849c1ae54a8116f2eb699268515 (patch) | |
tree | 22fbe3b8d217a9dcb7a644ebbc6bdfeffe29344a /tests/auto/declarative | |
parent | 24a94c1b88fc72243c53e1bf51b87dc0d0be41b7 (diff) | |
parent | 1cdaca2823a7c09f377ab205e6424e35febcbf2c (diff) | |
download | Qt-2a2ad1e632352849c1ae54a8116f2eb699268515.zip Qt-2a2ad1e632352849c1ae54a8116f2eb699268515.tar.gz Qt-2a2ad1e632352849c1ae54a8116f2eb699268515.tar.bz2 |
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7
Diffstat (limited to 'tests/auto/declarative')
-rw-r--r-- | tests/auto/declarative/examples/examples.pro | 2 | ||||
-rw-r--r-- | tests/auto/declarative/examples/tst_examples.cpp | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/declarative/examples/examples.pro b/tests/auto/declarative/examples/examples.pro index b9bcd28..85d2a73 100644 --- a/tests/auto/declarative/examples/examples.pro +++ b/tests/auto/declarative/examples/examples.pro @@ -3,3 +3,5 @@ contains(QT_CONFIG,declarative): QT += declarative macx:CONFIG -= app_bundle SOURCES += tst_examples.cpp + +DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/examples/tst_examples.cpp b/tests/auto/declarative/examples/tst_examples.cpp index 106a4e0..678dd59 100644 --- a/tests/auto/declarative/examples/tst_examples.cpp +++ b/tests/auto/declarative/examples/tst_examples.cpp @@ -168,10 +168,12 @@ void tst_examples::examples_data() QString examples = QLibraryInfo::location(QLibraryInfo::ExamplesPath); QString demos = QLibraryInfo::location(QLibraryInfo::DemosPath); + QString snippets = QLatin1String(SRCDIR) + "/../../../../doc/src/snippets/"; QStringList files; files << findQmlFiles(QDir(examples)); files << findQmlFiles(QDir(demos)); + files << findQmlFiles(QDir(snippets)); foreach (const QString &file, files) QTest::newRow(file.toLatin1().constData()) << file; |