diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-03-05 10:40:49 +1000 |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-03-05 10:40:49 +1000 |
commit | 5048b96a14b61329257e153f2551b6fca4519f84 (patch) | |
tree | f760e30ff171179f58b1fd121b01d1f2e869c509 /tests/auto/declarative/examples/tst_examples.cpp | |
parent | 8708350f4b00507348fa59f313bcfa554a3d6f79 (diff) | |
download | qt4-tools-5048b96a14b61329257e153f2551b6fca4519f84.tar.gz |
Include QML doc snippets in examples autotest
Diffstat (limited to 'tests/auto/declarative/examples/tst_examples.cpp')
-rw-r--r-- | tests/auto/declarative/examples/tst_examples.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/auto/declarative/examples/tst_examples.cpp b/tests/auto/declarative/examples/tst_examples.cpp index 106a4e074e..678dd5909f 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; |