From 1957c8bc660403667249a42c874c225986828d4a Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Tue, 14 Mar 2017 18:37:35 +0100 Subject: [PATCH] Squish: Update tst_opencreator_qbs Change-Id: I2aac18170ee7d4490852e587b2c016f913b242e0 Reviewed-by: Christian Stenger --- tests/system/suite_general/tst_opencreator_qbs/test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/system/suite_general/tst_opencreator_qbs/test.py b/tests/system/suite_general/tst_opencreator_qbs/test.py index 51b6b36185e..05167f53b3b 100644 --- a/tests/system/suite_general/tst_opencreator_qbs/test.py +++ b/tests/system/suite_general/tst_opencreator_qbs/test.py @@ -43,8 +43,8 @@ def main(): return test.log("Start parsing project") rootNodeTemplate = "{column='0' container=':Qt Creator_Utils::NavigationTreeView' text~='%s( \[\S+\])?' type='QModelIndex'}" - ntwObject = waitForObject(rootNodeTemplate % "qtcreator.qbs") - if waitFor("ntwObject.model().rowCount(ntwObject) > 2", 200000): # No need to wait for C++-parsing + ntwObject = waitForObject(rootNodeTemplate % "Qt Creator", 200000) + if waitFor("ntwObject.model().rowCount(ntwObject) > 2", 20000): # No need to wait for C++-parsing test.log("Parsing project done") # we only need the project else: test.warning("Parsing project timed out")