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: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
Robert Loehning
2015-09-10 15:40:46 +02:00
parent ebad4ed2c1
commit 73fbf3afd1

View File

@@ -38,7 +38,7 @@ def main():
workingDir = tempDir()
# we need a Qt >= 5.3 - we use checkedTargets, so we should get only valid targets
analyzerTargets = Targets.desktopTargetClasses()
if platform.system() in ('Windows', 'Microsoft') and JIRA.isBugStillOpen(14307):
if platform.system() in ('Windows', 'Microsoft'):
analyzerTargets &= ~Targets.DESKTOP_541_GCC
checkedTargets, projectName = createNewQtQuickApplication(workingDir, targets=analyzerTargets)
editor = waitForObject(":Qt Creator_QmlJSEditor::QmlJSTextEditorWidget")