aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Löhning <robert.loehning@qt.io>2023-03-31 11:09:16 +0200
committerRobert Löhning <robert.loehning@qt.io>2023-04-21 11:44:20 +0000
commit94c9e6cbac54d6fe4daf362a7bb048c624e0b85f (patch)
tree786e7b003ddff8d3f47059093980927be5bc414a
parent8ac826a1a0d15673f3527d513fb54e9d40ca76a4 (diff)
SquishTests: Add possible location of cdb
Change-Id: I72c3f1b5bdcceeca2764d4a77229c45655187376 Reviewed-by: Christian Stenger <christian.stenger@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
-rw-r--r--tests/system/suite_general/tst_default_settings/test.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/system/suite_general/tst_default_settings/test.py b/tests/system/suite_general/tst_default_settings/test.py
index 866720b27b..f710dd1375 100644
--- a/tests/system/suite_general/tst_default_settings/test.py
+++ b/tests/system/suite_general/tst_default_settings/test.py
@@ -275,7 +275,9 @@ def __getCDB__():
"C:\\Program Files\\Windows Kits\\8.1\\Debuggers\\x86",
"C:\\Program Files\\Windows Kits\\8.1\\Debuggers\\x64",
"C:\\Program Files (x86)\\Windows Kits\\10\\Debuggers\\x86",
- "C:\\Program Files (x86)\\Windows Kits\\10\\Debuggers\\x64"]
+ "C:\\Program Files (x86)\\Windows Kits\\10\\Debuggers\\x64",
+ "C:\\Program Files\\Windows Kits\\10\\Debuggers\\x86",
+ "C:\\Program Files\\Windows Kits\\10\\Debuggers\\x64"]
for cdbPath in possibleLocations:
cdb = os.path.join(cdbPath, "cdb.exe")
if os.path.exists(cdb):