Skip to content
Snippets Groups Projects
Commit 38ce2b78 authored by Christian Stenger's avatar Christian Stenger
Browse files

Squish: Fix tst_default_settings for Mac


lldb from Xcode is recognized as well.

Change-Id: I4c79b5362ced38461aa4f823d4e303093f81fcac
Reviewed-by: default avatarRobert Loehning <robert.loehning@digia.com>
parent 336c3159
No related branches found
No related tags found
No related merge requests found
......@@ -216,6 +216,10 @@ def __getExpectedDebuggers__():
result.extend(__getCDB__())
debuggers = ["gdb", "lldb"]
result.extend(filter(None, map(which, debuggers)))
if platform.system() == 'Darwin':
xcodeLLDB = "/Applications/Xcode.app/Contents/Developer/usr/bin/lldb"
if os.path.exists(xcodeLLDB):
result.append(xcodeLLDB)
return result
def __getCDB__():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment