SquishTests: Fix wrong usage

Amends 476f67cce5.

Change-Id: I584a059b52515bf625a973fff43485f5b52e6061
Reviewed-by: Robert Löhning <robert.loehning@qt.io>
This commit is contained in:
Christian Stenger
2023-04-13 13:37:43 +02:00
parent 02f2a93503
commit cf8f23e8e0

View File

@@ -35,7 +35,7 @@ def __checkKits__():
if llvmForBuild is not None: if llvmForBuild is not None:
internalClangExe = os.path.join(llvmForBuild, "bin", "clang") internalClangExe = os.path.join(llvmForBuild, "bin", "clang")
if platform.system() in ("Microsoft", "Windows"): if platform.system() in ("Microsoft", "Windows"):
internalClangExe.append(".exe") internalClangExe += ".exe"
if os.path.exists(internalClangExe): if os.path.exists(internalClangExe):
expectedCompilers.append(internalClangExe) expectedCompilers.append(internalClangExe)
foundCompilers = [] foundCompilers = []