aboutsummaryrefslogtreecommitdiffstats
path: root/tests/system/shared
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2019-11-15 09:04:13 +0100
committerRobert Loehning <robert.loehning@qt.io>2019-11-15 16:01:51 +0000
commitebcde98b722c9a29e5a26a9a4a585a872ca91948 (patch)
tree520a85434e337764740a7f4a969204d766bf2382 /tests/system/shared
parenta08a5499e930989a4eb8584fb6b4a9232d31d591 (diff)
Squish: Re-enable testing Qt Quick 2 Extension Plugin wizard
This effectively reverts commit 4f2f86b5bfd45e0bc9fc690d0ec7b7880eac7f36. Additionally fixes the expected kits for this template. Change-Id: Ie90f113894d331fa4023b8c58f30da5c4886c76d Reviewed-by: Robert Loehning <robert.loehning@qt.io>
Diffstat (limited to 'tests/system/shared')
-rw-r--r--tests/system/shared/project.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/system/shared/project.py b/tests/system/shared/project.py
index 471abd8a1e..7ea25299e5 100644
--- a/tests/system/shared/project.py
+++ b/tests/system/shared/project.py
@@ -513,7 +513,7 @@ def __getSupportedPlatforms__(text, templateName, getAsStrings=False):
supports = text[text.find('Supported Platforms'):].split(":")[1].strip().split(" ")
result = set()
if 'Desktop' in supports:
- if (version == None or version < "5.0"):
+ if (version == None or version < "5.0") and not templateName.startswith("Qt Quick 2"):
result.add(Targets.DESKTOP_4_8_7_DEFAULT)
if platform.system() in ("Linux", "Darwin"):
result.add(Targets.EMBEDDED_LINUX)