Skip to content
Snippets Groups Projects
Commit 73fbf3af authored by Robert Loehning's avatar Robert Loehning
Browse files

Squish: Don't check state of closed bug


The bug is fixed in master so checking for
it here in 3.5 is wrong and causes fails.

Change-Id: Idd429cf61734c869ada2728151b2bf6f82f6a240
Task-number: QTCREATORBUG-14307
Reviewed-by: default avatarChristian Stenger <christian.stenger@theqtcompany.com>
parent ebad4ed2
No related branches found
No related tags found
No related merge requests found
...@@ -38,7 +38,7 @@ def main(): ...@@ -38,7 +38,7 @@ def main():
workingDir = tempDir() workingDir = tempDir()
# we need a Qt >= 5.3 - we use checkedTargets, so we should get only valid targets # we need a Qt >= 5.3 - we use checkedTargets, so we should get only valid targets
analyzerTargets = Targets.desktopTargetClasses() analyzerTargets = Targets.desktopTargetClasses()
if platform.system() in ('Windows', 'Microsoft') and JIRA.isBugStillOpen(14307): if platform.system() in ('Windows', 'Microsoft'):
analyzerTargets &= ~Targets.DESKTOP_541_GCC analyzerTargets &= ~Targets.DESKTOP_541_GCC
checkedTargets, projectName = createNewQtQuickApplication(workingDir, targets=analyzerTargets) checkedTargets, projectName = createNewQtQuickApplication(workingDir, targets=analyzerTargets)
editor = waitForObject(":Qt Creator_QmlJSEditor::QmlJSTextEditorWidget") editor = waitForObject(":Qt Creator_QmlJSEditor::QmlJSTextEditorWidget")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment