From ee1bac2ee66dec914a8e414495792d4fe8d419c3 Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Thu, 19 Sep 2013 17:10:49 +0200 Subject: Squish: Fix verifyBuildAndRun() "The program has unexpectedly finished." is considered valid output, see https://bugreports.qt-project.org/browse/QTCREATORBUG-9212 Change-Id: Ia18e2dcfccdf1bdfbbc793a01897a88c4a17eb40 Reviewed-by: Christian Stenger --- tests/system/shared/build_utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/system/shared/build_utils.py b/tests/system/shared/build_utils.py index caae5b8c70..6048482eaf 100644 --- a/tests/system/shared/build_utils.py +++ b/tests/system/shared/build_utils.py @@ -241,7 +241,8 @@ def verifyBuildAndRun(): # check application output log appOutput = logApplicationOutput() if appOutput: - test.verify(re.search(".* exited with code \d+", str(appOutput)) and + test.verify((re.search(".* exited with code \d+", str(appOutput)) or + re.search("The program has unexpectedly finished\.", str(appOutput))) and re.search('[Ss]tarting.*', str(appOutput)), "Verifying if built app started and closed successfully.") -- cgit v1.2.1