summaryrefslogtreecommitdiff
path: root/tests/system/suite_qtquick
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@digia.com>2014-03-20 09:58:21 +0100
committerChristian Stenger <christian.stenger@digia.com>2014-03-20 13:05:54 +0100
commit8a6b6c7cbac0f0ee815f4d7a9b310d2fe3d6ce2e (patch)
treec647f357867d924f563a36ddb9bc9f9c1b19eb08 /tests/system/suite_qtquick
parent6ca680ac1fc136e2aff2fecbe2b424f1a7aa6eef (diff)
downloadqt-creator-8a6b6c7cbac0f0ee815f4d7a9b310d2fe3d6ce2e.tar.gz
Squish: Avoid AUT crash in tst_qml_outline
Change-Id: I93e8c0050dba4f0acb7b02eeeb5a0dfdddf9d02d Reviewed-by: Robert Loehning <robert.loehning@digia.com>
Diffstat (limited to 'tests/system/suite_qtquick')
-rw-r--r--tests/system/suite_qtquick/tst_qml_outline/test.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/system/suite_qtquick/tst_qml_outline/test.py b/tests/system/suite_qtquick/tst_qml_outline/test.py
index a12a1841c7..0407414192 100644
--- a/tests/system/suite_qtquick/tst_qml_outline/test.py
+++ b/tests/system/suite_qtquick/tst_qml_outline/test.py
@@ -63,6 +63,8 @@ def buildTreeFromOutline():
global outline
model = waitForObject(outline).model()
waitFor("model.rowCount() > 0")
+ if platform.system() == 'Darwin':
+ snooze(1) # if model updates delayed processChildren() results in AUT crash
return processChildren(model, QModelIndex(), 0)
def processChildren(model, startIndex, level):