forked from qt-creator/qt-creator
Squish: Raise some timeouts a bit...
...as these frequently fail on OSX. Change-Id: I200fa1e57e8ec98221c9a82177565d9e60b79356 Reviewed-by: Robert Loehning <robert.loehning@qt.io>
This commit is contained in:
@@ -58,13 +58,13 @@ def ensureChecked(objectName, shouldBeChecked = True, timeout=20000):
|
||||
try:
|
||||
# needed for transition Qt::PartiallyChecked -> Qt::Checked -> Qt::Unchecked
|
||||
clicked = 0
|
||||
while not waitFor('widget.checkState() == targetState', 1000) and clicked < 2:
|
||||
while not waitFor('widget.checkState() == targetState', 1500) and clicked < 2:
|
||||
clickButton(widget)
|
||||
clicked += 1
|
||||
test.verify(waitFor("widget.checkState() == targetState", 1000))
|
||||
except:
|
||||
# widgets not derived from QCheckbox don't have checkState()
|
||||
if not waitFor('widget.checked == shouldBeChecked', 1000):
|
||||
if not waitFor('widget.checked == shouldBeChecked', 1500):
|
||||
mouseClick(widget, 10, 6, 0, Qt.LeftButton)
|
||||
test.verify(waitFor("widget.checked == shouldBeChecked", 1000))
|
||||
test.log("New state for QCheckBox: %s" % state,
|
||||
|
||||
@@ -117,7 +117,7 @@ def __compFunc__(it, foundComp, foundCompNames):
|
||||
foundCompNames.append(it)
|
||||
|
||||
def __dbgFunc__(it, foundDbg):
|
||||
waitFor("object.exists(':Path.Utils_BaseValidatingLineEdit')", 1000)
|
||||
waitFor("object.exists(':Path.Utils_BaseValidatingLineEdit')", 2000)
|
||||
pathLineEdit = findObject(":Path.Utils_BaseValidatingLineEdit")
|
||||
foundDbg.append(str(pathLineEdit.text))
|
||||
|
||||
|
||||
@@ -52,7 +52,7 @@ def main():
|
||||
type(editor, "<Return>")
|
||||
invokeMenuItem("File", "Save All")
|
||||
clickButton(waitForObject(":Qt Creator.CloseDoc_QToolButton"))
|
||||
if test.verify(waitFor("headerFileName in str(mainWindow.windowTitle)", 1000),
|
||||
if test.verify(waitFor("headerFileName in str(mainWindow.windowTitle)", 2000),
|
||||
"Header file was shown after closing source?"):
|
||||
editor = waitForObject(":Qt Creator_CppEditor::Internal::CPPEditorWidget")
|
||||
editorText = str(editor.plainText)
|
||||
@@ -80,7 +80,7 @@ def main():
|
||||
addCPlusPlusFileToCurrentProject(newClassName, "C++ Class", False, newBasePath=basePath,
|
||||
expectedSourceName=sourceFileName,
|
||||
expectedHeaderName=headerFileName)
|
||||
test.verify(not waitFor("overwritten(sourceFileName)", 500),
|
||||
test.verify(not waitFor("overwritten(sourceFileName)", 2000),
|
||||
"Source file should not be overwritten.")
|
||||
test.verify(not waitFor("overwritten(headerFileName)", 500),
|
||||
"Header file should not be overwritten.")
|
||||
@@ -88,7 +88,7 @@ def main():
|
||||
addCPlusPlusFileToCurrentProject(newClassName, "C++ Class", True, newBasePath=basePath,
|
||||
expectedSourceName=sourceFileName,
|
||||
expectedHeaderName=headerFileName)
|
||||
test.verify(waitFor("overwritten(sourceFileName)", 500),
|
||||
test.verify(waitFor("overwritten(sourceFileName)", 2000),
|
||||
"Source file should be overwritten.")
|
||||
test.verify(waitFor("overwritten(headerFileName)", 500),
|
||||
"Header file should be overwritten.")
|
||||
|
||||
Reference in New Issue
Block a user