From 158dfffe7d72aa1acd74254a2cab8c52da68d52a Mon Sep 17 00:00:00 2001 From: Christian Stenger <christian.stenger@nokia.com> Date: Thu, 5 Apr 2012 18:35:59 +0200 Subject: [PATCH] Squish: Add try/except to continue anyway MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I24a51142988841da3aa156f6a5e6e239a6bd1914 Reviewed-by: Robert Löhning <robert.loehning@nokia.com> --- tests/system/shared/project.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/system/shared/project.py b/tests/system/shared/project.py index 43f5c34d2b2..b133a665293 100644 --- a/tests/system/shared/project.py +++ b/tests/system/shared/project.py @@ -343,7 +343,10 @@ def validType(sType, userDef): def __closeSubprocessByPushingStop__(sType): ensureChecked(":Qt Creator_AppOutput_Core::Internal::OutputPaneToggleButton") - waitForObject(":Qt Creator.Stop_QToolButton", 5000) + try: + waitForObject(":Qt Creator.Stop_QToolButton", 5000) + except: + pass playButton = verifyEnabled(":Qt Creator.ReRun_QToolButton", False) stopButton = verifyEnabled(":Qt Creator.Stop_QToolButton") if stopButton.enabled: -- GitLab