aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2012-02-20 10:34:44 +1000
committerQt by Nokia <qt-info@nokia.com>2012-02-24 10:24:58 +0100
commit9d2b618fa022daeabd45e57aa1596197db883037 (patch)
tree90536e9fc088d734439921dde304b49fe7f38df0 /tests
parent91d543f00904a6caa2fab850ff3eca12de2d65ac (diff)
Start of examples refactor
This is the general reorg of the examples directory structure, plus additional guidelines. calculator, animations and accessibility have been updated to the new standards and tested, as an example. Task-number: QTBUG-24133 Change-Id: I76c3b86751d3195ba2a5474ff23afb875765e9a4 Reviewed-by: Alan Alpert <alan.alpert@nokia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qtquick2/examples/tst_examples.cpp25
1 files changed, 8 insertions, 17 deletions
diff --git a/tests/auto/qtquick2/examples/tst_examples.cpp b/tests/auto/qtquick2/examples/tst_examples.cpp
index 0e420f7277..ce8f214efd 100644
--- a/tests/auto/qtquick2/examples/tst_examples.cpp
+++ b/tests/auto/qtquick2/examples/tst_examples.cpp
@@ -89,32 +89,25 @@ tst_examples::tst_examples()
excludedFiles << "doc/src/snippets/declarative/listmodel.qml"; //Just a ListModel, no root QQuickItem
// Add directories you want excluded here
- excludedDirs << "examples/declarative/text/fonts"; // QTBUG-21415
+ excludedDirs << "examples/shared"; //Not an example
+ excludedDirs << "examples/qtquick/text/fonts"; // QTBUG-21415
excludedDirs << "doc/src/snippets/declarative/path"; //No root QQuickItem
- // Not run in QQuickView
- excludedDirs << "examples/declarative/qtquick1";
-
// These snippets are not expected to run on their own.
excludedDirs << "doc/src/snippets/declarative/visualdatamodel_rootindex";
excludedDirs << "doc/src/snippets/declarative/qtbinding";
excludedDirs << "doc/src/snippets/declarative/imports";
- excludedDirs << "doc/src/snippets/qtquick1/visualdatamodel_rootindex";
- excludedDirs << "doc/src/snippets/qtquick1/qtbinding";
- excludedDirs << "doc/src/snippets/qtquick1/imports";
#ifdef QT_NO_WEBKIT
- excludedDirs << "examples/declarative/modelviews/webview";
- excludedDirs << "examples/declarative/webbrowser";
+ excludedDirs << "examples/qtquick/modelviews/webview";
+ excludedDirs << "examples/demos/webbrowser";
excludedDirs << "doc/src/snippets/declarative/webview";
- excludedDirs << "doc/src/snippets/qtquick1/webview";
#endif
#ifdef QT_NO_XMLPATTERNS
- excludedDirs << "examples/declarative/xml/xmldata";
- excludedDirs << "examples/declarative/twitter";
- excludedDirs << "examples/declarative/flickr";
- excludedDirs << "examples/declarative/photoviewer";
+ excludedDirs << "examples/demos/twitter";
+ excludedDirs << "examples/demos/flickr";
+ excludedDirs << "examples/demos/photoviewer";
#endif
}
@@ -230,12 +223,10 @@ void tst_examples::sgexamples_data()
{
QTest::addColumn<QString>("file");
- QString examples = QLatin1String(SRCDIR) + "/../../../../examples/declarative/";
- QString tutorials = QLatin1String(SRCDIR) + "/../../../../examples/tutorials/"; //Only declarative tutorials since modularization
+ QString examples = QLatin1String(SRCDIR) + "/../../../../examples/";
QStringList files;
files << findQmlFiles(QDir(examples));
- files << findQmlFiles(QDir(tutorials));
foreach (const QString &file, files)
QTest::newRow(qPrintable(file)) << file;