summaryrefslogtreecommitdiff
path: root/tests/system/shared
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@digia.com>2013-04-25 19:08:55 +0200
committerChristian Stenger <christian.stenger@digia.com>2013-05-02 10:13:19 +0200
commitc8984dc58adb48ce82a2794fe713d945f1d4f3ec (patch)
tree704f87520a13215d1d5acbedcd0519cc9b24acc7 /tests/system/shared
parent3245b706bcd173aed34a981b592de0019e25c7d5 (diff)
downloadqt-creator-c8984dc58adb48ce82a2794fe713d945f1d4f3ec.tar.gz
Squish: Using progressBarWait() instead of waitForSignal()
Change-Id: Ia87569c080f3b54dd8f78b023408de76eb3c574c Reviewed-by: Christian Stenger <christian.stenger@digia.com>
Diffstat (limited to 'tests/system/shared')
-rw-r--r--tests/system/shared/build_utils.py3
-rw-r--r--tests/system/shared/project.py6
-rw-r--r--tests/system/shared/utils.py4
3 files changed, 6 insertions, 7 deletions
diff --git a/tests/system/shared/build_utils.py b/tests/system/shared/build_utils.py
index 491c4bb7df..859131d803 100644
--- a/tests/system/shared/build_utils.py
+++ b/tests/system/shared/build_utils.py
@@ -163,8 +163,7 @@ def selectBuildConfig(targetCount, currentTarget, configName):
switchViewTo(ViewConstants.PROJECTS)
switchToBuildOrRunSettingsFor(targetCount, currentTarget, ProjectSettings.BUILD)
if selectFromCombo(":scrollArea.Edit build configuration:_QComboBox", configName):
- waitForSignal("{type='CppTools::Internal::CppModelManager' unnamed='1'}",
- "sourceFilesRefreshed(QStringList)")
+ progressBarWait(30000)
return getQtInformationForBuildSettings(targetCount, True, ViewConstants.EDIT)
# This will not trigger a rebuild. If needed, caller has to do this.
diff --git a/tests/system/shared/project.py b/tests/system/shared/project.py
index 95ea498865..99fa6c76fe 100644
--- a/tests/system/shared/project.py
+++ b/tests/system/shared/project.py
@@ -175,7 +175,7 @@ def createProject_Qt_GUI(path, projectName, checks = True):
expectedFiles.extend(__sortFilenamesOSDependent__(["main.cpp", cpp_file, h_file, ui_file, pro_file]))
__createProjectHandleLastPage__(expectedFiles)
- waitForSignal("{type='CppTools::Internal::CppModelManager' unnamed='1'}", "sourceFilesRefreshed(QStringList)", 20000)
+ progressBarWait(20000)
__verifyFileCreation__(path, expectedFiles)
return checkedTargets
@@ -199,7 +199,7 @@ def createProject_Qt_Console(path, projectName, checks = True):
expectedFiles.extend(__sortFilenamesOSDependent__([cpp_file, pro_file]))
__createProjectHandleLastPage__(expectedFiles)
- waitForSignal("{type='CppTools::Internal::CppModelManager' unnamed='1'}", "sourceFilesRefreshed(QStringList)", 10000)
+ progressBarWait(10000)
__verifyFileCreation__(path, expectedFiles)
return checkedTargets
@@ -224,7 +224,7 @@ def createNewQtQuickApplication(workingDir, projectName = None, templateFile = N
clickButton(nextButton)
__createProjectHandleLastPage__()
- waitForSignal("{type='CppTools::Internal::CppModelManager' unnamed='1'}", "sourceFilesRefreshed(QStringList)", 10000)
+ progressBarWait(10000)
return checkedTargets, projectName
def createNewQtQuickUI(workingDir):
diff --git a/tests/system/shared/utils.py b/tests/system/shared/utils.py
index 4bb0e36ef8..b1f55dc5a6 100644
--- a/tests/system/shared/utils.py
+++ b/tests/system/shared/utils.py
@@ -609,9 +609,9 @@ def checkIfObjectExists(name, shouldExist = True, timeout = 3000, verboseOnFail
return result
# wait for progress bar(s) to appear and disappear
-def progressBarWait():
+def progressBarWait(timeout=60000):
checkIfObjectExists("{type='Core::Internal::ProgressBar' unnamed='1'}", True, 2000)
- checkIfObjectExists("{type='Core::Internal::ProgressBar' unnamed='1'}", False, 60000)
+ checkIfObjectExists("{type='Core::Internal::ProgressBar' unnamed='1'}", False, timeout)
def readFile(filename):
f = open(filename, "r")