From 96a98fdd4d6926eab54d4cac9b0e787a35ff67de Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Tue, 8 Apr 2025 12:25:31 +0200 Subject: [PATCH] SquishTests: Adapt helper function MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We nowadays have a couple of wizards where the build system may end up being a specialized CMake selection. Inside the tests we do not distinguish that deep so far, but rely on single build system names. Change-Id: Iacf824f526e746e466c4018592bc9cc8bdb9c1b8 Reviewed-by: Robert Löhning --- tests/system/shared/project.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/system/shared/project.py b/tests/system/shared/project.py index b9f351aff02..86758cf0fd7 100644 --- a/tests/system/shared/project.py +++ b/tests/system/shared/project.py @@ -114,6 +114,8 @@ def __handleBuildSystem__(buildSystem): try: if buildSystem is None: buildSystem = str(comboObj.currentText) + if buildSystem.startswith("CMake"): + buildSystem = "CMake" test.log("Keeping default build system '%s'" % buildSystem) else: test.log("Trying to select build system '%s'" % buildSystem)