forked from OSchip/llvm-project
[Test-Suite] Speculative fix for darwin bots
When building with Xcode it looks like some of the logic in my test changes went haywire. This should fix it. llvm-svn: 285646
This commit is contained in:
parent
01fd221a29
commit
5d51a76994
|
@ -688,8 +688,8 @@ def setupSysPath():
|
|||
configuration.skipCategories.append("lldb-mi")
|
||||
|
||||
lldbPythonDir = None # The directory that contains 'lldb/__init__.py'
|
||||
if os.path.exists(os.path.join(lldbLibDir, "LLDB.framework")):
|
||||
configuration.lldbFrameworkPath = lldbLibDir
|
||||
if not configuration.lldbFrameworkPath and os.path.exists(os.path.join(lldbLibDir, "LLDB.framework")):
|
||||
configuration.lldbFrameworkPath = os.path.join(lldbLibDir, "LLDB.framework")
|
||||
if configuration.lldbFrameworkPath:
|
||||
lldbtest_config.lldbFrameworkPath = configuration.lldbFrameworkPath
|
||||
candidatePath = os.path.join(
|
||||
|
|
Loading…
Reference in New Issue