SquishTests: Adapt test of navigation tree

Extends b57f72e3c8 to another test.

Change-Id: I419ce4fb05667fd22a1e913ef7122b191e12a34a
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
Robert Löhning
2023-07-27 17:17:50 +02:00
parent 3006dab72d
commit 178b490997

View File

@@ -8,7 +8,7 @@ def main():
if not neededFilePresent(pathCreator): if not neededFilePresent(pathCreator):
return return
startQC() startQC(["-noload", "ClangCodeModel"])
if not startedWithoutPluginError(): if not startedWithoutPluginError():
return return
openQbsProject(pathCreator) openQbsProject(pathCreator)
@@ -24,7 +24,7 @@ def main():
else: else:
test.warning("Parsing project timed out") test.warning("Parsing project timed out")
compareProjectTree(rootNodeTemplate % "Qt Creator", "projecttree_creator.tsv") compareProjectTree(rootNodeTemplate % "Qt Creator", "projecttree_creator.tsv")
buildIssuesTexts = map(lambda i: str(i[0]), getBuildIssues()) buildIssuesTexts = map(lambda i: str(i[0]), getBuildIssues(False))
deprecationWarnings = "\n".join(set(filter(lambda s: "deprecated" in s, buildIssuesTexts))) deprecationWarnings = "\n".join(set(filter(lambda s: "deprecated" in s, buildIssuesTexts)))
if deprecationWarnings: if deprecationWarnings:
test.warning("Creator claims that the .qbs file uses deprecated features.", test.warning("Creator claims that the .qbs file uses deprecated features.",