summaryrefslogtreecommitdiff
path: root/tests/system/shared/build_utils.py
diff options
context:
space:
mode:
authorRobert Löhning <robert.loehning@qt.io>2021-10-22 22:06:53 +0200
committerRobert Löhning <robert.loehning@qt.io>2021-10-29 11:23:37 +0000
commit73405cc089e83b5f7ae0d617c9d09205097b83c7 (patch)
treeb286140f71ffa71b1756daf6b3407c97d0ea22cc /tests/system/shared/build_utils.py
parentd5467917d096ef779607db1620cf7add0826fa69 (diff)
downloadqt-creator-73405cc089e83b5f7ae0d617c9d09205097b83c7.tar.gz
Squish: Update for running tst_APTW01
Change-Id: I95ac2d2209dbc47e316b746313e4545a1b80ab55 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'tests/system/shared/build_utils.py')
-rw-r--r--tests/system/shared/build_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/system/shared/build_utils.py b/tests/system/shared/build_utils.py
index 9f2ed42ccb..b8187760fc 100644
--- a/tests/system/shared/build_utils.py
+++ b/tests/system/shared/build_utils.py
@@ -214,7 +214,7 @@ def verifyBuildAndRun():
appOutput = logApplicationOutput()
if appOutput:
test.verify((re.search(".* exited with code \d+", str(appOutput)) or
- re.search("The program has unexpectedly finished\.", str(appOutput))) and
+ re.search(".* crashed\.", str(appOutput))) and
re.search('[Ss]tarting.*', str(appOutput)),
"Verifying if built app started and closed successfully.")