aboutsummaryrefslogtreecommitdiffstats
path: root/tests/system/suite_qtquick
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@digia.com>2014-04-01 10:52:51 +0200
committerChristian Stenger <christian.stenger@digia.com>2014-04-01 12:05:04 +0200
commit03a1361f590b496bad1476926b747dc8878ae453 (patch)
treef390c415d1efed2bd820efedd95e356f7a9a4949 /tests/system/suite_qtquick
parent8398a306f47b39d39fc1dd9c9b179db96337ed56 (diff)
Squish: Explicitly set wanted kit
Change-Id: I287ce12a040a81a6392f39385c5a0c26d53b8e28 Reviewed-by: Robert Loehning <robert.loehning@digia.com>
Diffstat (limited to 'tests/system/suite_qtquick')
-rw-r--r--tests/system/suite_qtquick/tst_qml_outline/test.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/system/suite_qtquick/tst_qml_outline/test.py b/tests/system/suite_qtquick/tst_qml_outline/test.py
index 0407414192..46420f3310 100644
--- a/tests/system/suite_qtquick/tst_qml_outline/test.py
+++ b/tests/system/suite_qtquick/tst_qml_outline/test.py
@@ -42,7 +42,11 @@ def main():
startApplication("qtcreator" + SettingsPath)
if not startedWithoutPluginError():
return
- openQmakeProject(os.path.join(templateDir, proFile))
+ targets = openQmakeProject(os.path.join(templateDir, proFile))
+ # make sure we use the 474 kit for having QtQuick 1.0 support
+ switchViewTo(ViewConstants.PROJECTS)
+ switchToBuildOrRunSettingsFor(len(targets), 0, ProjectSettings.BUILD)
+ switchViewTo(ViewConstants.EDIT)
qmlFiles = ["focus.QML.qml.focus\\.qml", "focus.QML.qml.Core.ListMenu\\.qml"]
checkOutlineFor(qmlFiles)
testModify()