diff --git a/tests/system/suite_general/tst_build_speedcrunch/test.py b/tests/system/suite_general/tst_build_speedcrunch/test.py index 2425b05169d..960417b829e 100644 --- a/tests/system/suite_general/tst_build_speedcrunch/test.py +++ b/tests/system/suite_general/tst_build_speedcrunch/test.py @@ -20,20 +20,10 @@ def main(): fancyToolButton = waitForObject(":*Qt Creator_Core::Internal::FancyToolButton") - qtVerPattern = re.compile("\d\.\d(\.\d+)?") availableConfigs = iterateBuildConfigs(1, 0, "Release") if not availableConfigs: test.fatal("Haven't found a suitable Qt version (need Release build) - leaving without building.") for config in availableConfigs: - qtVersion = qtVerPattern.search(config) - if qtVersion: - qtVersion = qtVersion.group() - if qtVersion >= "4.8": - test.log("Skipping config %s - this project needs Qt <= 4.7.x (got %s)" % (config, qtVersion)) - continue - else: - test.warning("Could not determine Qt version for config '%s' - skipping..." % config) - continue selectBuildConfig(1, 0, config) buildConfig = buildConfigFromFancyToolButton(fancyToolButton) if buildConfig != config: