2016-01-15 14:55:33 +01:00
|
|
|
# Copyright (C) 2016 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2013-05-15 13:17:33 +02:00
|
|
|
|
2011-08-26 12:39:04 +02:00
|
|
|
source("../../shared/qtcreator.py")
|
2011-08-25 10:05:28 +02:00
|
|
|
|
2011-08-31 13:51:32 +02:00
|
|
|
|
2012-01-17 15:09:50 +01:00
|
|
|
def buildConfigFromFancyToolButton(fancyToolButton):
|
2011-12-08 18:45:31 +01:00
|
|
|
beginOfBuildConfig = "<b>Build:</b> "
|
|
|
|
|
endOfBuildConfig = "<br/><b>Deploy:</b>"
|
|
|
|
|
toolTipText = str(fancyToolButton.toolTip)
|
|
|
|
|
beginIndex = toolTipText.find(beginOfBuildConfig) + len(beginOfBuildConfig)
|
|
|
|
|
endIndex = toolTipText.find(endOfBuildConfig)
|
|
|
|
|
return toolTipText[beginIndex:endIndex]
|
|
|
|
|
|
2011-08-25 10:05:28 +02:00
|
|
|
def main():
|
2022-11-04 17:50:19 +01:00
|
|
|
with GitClone("https://bitbucket.org/heldercorreia/speedcrunch.git",
|
|
|
|
|
"release-0.12.0") as SpeedCrunchPath:
|
|
|
|
|
if not SpeedCrunchPath:
|
|
|
|
|
test.fatal("Could not clone SpeedCrunch")
|
|
|
|
|
return
|
|
|
|
|
startQC()
|
|
|
|
|
if not startedWithoutPluginError():
|
|
|
|
|
return
|
|
|
|
|
openQmakeProject(os.path.join(SpeedCrunchPath, "src", "speedcrunch.pro"),
|
|
|
|
|
[Targets.DESKTOP_5_14_1_DEFAULT])
|
|
|
|
|
waitForProjectParsing()
|
|
|
|
|
|
|
|
|
|
fancyToolButton = waitForObject(":*Qt Creator_Core::Internal::FancyToolButton")
|
|
|
|
|
|
|
|
|
|
availableConfigs = iterateBuildConfigs("Release")
|
|
|
|
|
if not availableConfigs:
|
|
|
|
|
test.fatal("Haven't found a suitable Qt version (need Release build) - leaving without building.")
|
|
|
|
|
for kit, config in availableConfigs:
|
|
|
|
|
selectBuildConfig(kit, config)
|
|
|
|
|
buildConfig = buildConfigFromFancyToolButton(fancyToolButton)
|
|
|
|
|
if buildConfig != config:
|
|
|
|
|
test.fatal("Build configuration %s is selected instead of %s" % (buildConfig, config))
|
|
|
|
|
continue
|
|
|
|
|
test.log("Testing build configuration: " + config)
|
|
|
|
|
invokeMenuItem("Build", "Run qmake")
|
|
|
|
|
waitForCompile()
|
|
|
|
|
selectFromLocator("t rebuild", "Rebuild All Projects")
|
|
|
|
|
waitForCompile(300000)
|
|
|
|
|
checkCompile()
|
|
|
|
|
checkLastBuild()
|
|
|
|
|
|
|
|
|
|
# Add a new run configuration
|
|
|
|
|
|
|
|
|
|
invokeMenuItem("File", "Exit")
|