aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/auto/auto.pro3
-rw-r--r--tests/auto/qml/qml.pro20
2 files changed, 17 insertions, 6 deletions
diff --git a/tests/auto/auto.pro b/tests/auto/auto.pro
index 1e80f1bf65..f9c1fcce91 100644
--- a/tests/auto/auto.pro
+++ b/tests/auto/auto.pro
@@ -18,4 +18,7 @@ qtHaveModule(gui):qtConfig(opengl(es1|es2)?) {
# console applications not supported
uikit: SUBDIRS -= qmltest
+# Restricted sub-set for now
+boot2qt: SUBDIRS = qml
+
installed_cmake.depends = cmake
diff --git a/tests/auto/qml/qml.pro b/tests/auto/qml/qml.pro
index a9b18e9f32..007eb0dc83 100644
--- a/tests/auto/qml/qml.pro
+++ b/tests/auto/qml/qml.pro
@@ -7,6 +7,9 @@ PUBLICTESTS += \
parserstress \
qjsvalueiterator \
qjsonbinding \
+
+!boot2qt {
+PUBLICTESTS += \
qmlmin \
qqmlcomponent \
qqmlconsole \
@@ -25,15 +28,21 @@ PUBLICTESTS += \
qquickfolderlistmodel \
qqmlapplicationengine \
qqmlsettings \
- qqmlstatemachine
+ qqmlstatemachine \
+ qmldiskcache
+}
PRIVATETESTS += \
- animation \
qqmlcpputils \
+ qqmldirparser \
+ v4misc \
+
+!boot2qt {
+PRIVATETESTS += \
+ animation \
qqmlecmascript \
qqmlcontext \
qqmlexpression \
- qqmldirparser \
qqmlglobal \
qqmllanguage \
qqmlopenmetaobject \
@@ -57,13 +66,12 @@ PRIVATETESTS += \
qqmltimer \
qqmlinstantiator \
qqmlenginecleanup \
- v4misc \
qqmltranslation \
qqmlimport \
qqmlobjectmodel \
- qmldiskcache \
qv4mm \
ecmascripttests
+}
qtHaveModule(widgets) {
PUBLICTESTS += \
@@ -73,7 +81,7 @@ qtHaveModule(widgets) {
SUBDIRS += $$PUBLICTESTS
SUBDIRS += $$METATYPETESTS
-qtConfig(process) {
+qtConfig(process):!boot2qt {
!contains(QT_CONFIG, no-qml-debug): SUBDIRS += debugger
SUBDIRS += qmllint qmlplugindump
}