diff --git a/tests/system/shared/project.py b/tests/system/shared/project.py index 6b7f7dbd054f7992ea5a403de51bf466cf94f398..853b2187a10602ad4d02dfa0cc430f6a6b44fdf6 100644 --- a/tests/system/shared/project.py +++ b/tests/system/shared/project.py @@ -629,6 +629,8 @@ def __getSupportedPlatforms__(text, templateName, getAsStrings=False): version = None if 'only available with Qt 5.6' in text: result = [Targets.DESKTOP_561_DEFAULT] + elif 'available with Qt 5.7 and later' in text: + result = [] # FIXME we have currently no Qt5.7+ available in predefined settings elif 'Supported Platforms' in text: supports = text[text.find('Supported Platforms'):].split(":")[1].strip().split(" ") result = [] diff --git a/tests/system/suite_general/tst_create_proj_wizard/test.py b/tests/system/suite_general/tst_create_proj_wizard/test.py index 20b819300e58604cf413a649b4ce431808053c9a..126e1f3d7ebfe8a9cd4a8e5b21a8268170cf343c 100644 --- a/tests/system/suite_general/tst_create_proj_wizard/test.py +++ b/tests/system/suite_general/tst_create_proj_wizard/test.py @@ -83,6 +83,11 @@ def main(): if counter < len(qtVersionsForQuick) - 1: displayedPlatforms = __createProject__(category, template) continue + elif template == "Qt Quick Controls 2 Application": # needs a Qt5.7 + clickButton(waitForObject(":Next_QPushButton")) # ignore this details page for now + verifyKitCheckboxes(kits, displayedPlatforms) + safeClickButton("Cancel") + continue elif template.startswith("Plain C"): for counter, buildSystem in enumerate(availableBuildSystems): combo = "{name='BuildSystem' type='Utils::TextFieldComboBox' visible='1'}"