aboutsummaryrefslogtreecommitdiffstats
path: root/tests/system/suite_editors
diff options
context:
space:
mode:
authorRobert Löhning <robert.loehning@qt.io>2023-05-26 00:23:58 +0200
committerRobert Löhning <robert.loehning@qt.io>2023-05-31 12:04:15 +0000
commit58fb6f88a643dfa6e8799722f0dbf272b29a138b (patch)
treebc25ee6d07904caf3f0a053a4ed8e18fedb4bc58 /tests/system/suite_editors
parent7bd06829c4907bdf8a9e4dcf630884f3625da7e7 (diff)
SquishTests: Update reading build issues
Fixes tst_build_new_project, tst_CCOM02 et al. tst_tasks_handling fails which might be an actual issue, reported in: Task-number: QTCREATORBUG-29209 Change-Id: I5eae54df27d8ba8f441e5b9c4acdaa2b41716245 Reviewed-by: Christian Stenger <christian.stenger@qt.io> Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'tests/system/suite_editors')
-rw-r--r--tests/system/suite_editors/tst_memberoperator/test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/system/suite_editors/tst_memberoperator/test.py b/tests/system/suite_editors/tst_memberoperator/test.py
index ba1f147685..4d11465b71 100644
--- a/tests/system/suite_editors/tst_memberoperator/test.py
+++ b/tests/system/suite_editors/tst_memberoperator/test.py
@@ -27,11 +27,11 @@ def __noBuildIssues__():
def __syntaxErrorDetected__():
buildIssues = getBuildIssues(False)
for issue in buildIssues:
- if issue[3] in ["Expected ';' after expression (fix available)",
+ if issue[0] in ["Expected ';' after expression (fix available)",
"Expected ';' at end of declaration (fix available)",
"Use of undeclared identifier 'syntaxError'"]:
return True
- if re.match(issue[3], "Declaration of reference variable '.+' requires an initializer"):
+ if re.match(issue[0], "Declaration of reference variable '.+' requires an initializer"):
return True
return False