summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@theqtcompany.com>2015-05-18 19:22:53 +0200
committerRobert Loehning <robert.loehning@theqtcompany.com>2015-05-19 09:08:56 +0000
commitda2b1cfa4e7e50d0e6b62dac0a4aebdb1507f0ab (patch)
tree9ace36d50a44e0ea45a110d0ef40e251beeaf1e4
parent6c2bcb588bfbf5899a8f95ce5ffad61e5839d02c (diff)
downloadqt-creator-da2b1cfa4e7e50d0e6b62dac0a4aebdb1507f0ab.tar.gz
Squish: Don't analyze kits which take too long
Change-Id: I18e2cb163f2aef81ca34994a38ceb4865b2ae5ad Task-number: QTCREATORBUG-14307 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
-rw-r--r--tests/system/suite_debugger/tst_simple_analyze/test.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/system/suite_debugger/tst_simple_analyze/test.py b/tests/system/suite_debugger/tst_simple_analyze/test.py
index 9c4f1c7325..dddff7d5e8 100644
--- a/tests/system/suite_debugger/tst_simple_analyze/test.py
+++ b/tests/system/suite_debugger/tst_simple_analyze/test.py
@@ -38,6 +38,8 @@ def main():
workingDir = tempDir()
# we need a Qt >= 4.8
analyzerTargets = Targets.desktopTargetClasses() & ~Targets.DESKTOP_474_GCC
+ if platform.system() in ('Windows', 'Microsoft') and JIRA.isBugStillOpen(14307):
+ analyzerTargets &= ~Targets.DESKTOP_480_DEFAULT & ~Targets.DESKTOP_541_GCC
checkedTargets, projectName = createNewQtQuickApplication(workingDir, targets=analyzerTargets)
editor = waitForObject(":Qt Creator_QmlJSEditor::QmlJSTextEditorWidget")
if placeCursorToLine(editor, "MouseArea.*", True):