test: add missing parameter

Add the missing required parameter to the function.  This permits tests to get a
bit further before failing.

llvm-svn: 269626
This commit is contained in:
Saleem Abdulrasool 2016-05-16 03:13:05 +00:00
parent 0624b82260
commit 81eadde6ca
1 changed files with 1 additions and 1 deletions

View File

@ -638,7 +638,7 @@ def setupSysPath():
if not lldbPythonDir:
if platform.system() == "Darwin":
python_resource_dir = ['LLDB.framework', 'Resources', 'Python']
outputPaths = getXcodeOutputPaths()
outputPaths = getXcodeOutputPaths(lldbRootDirectory)
for outputPath in outputPaths:
candidatePath = os.path.join(outputPath, python_resource_dir)
if os.path.isfile(os.path.join(candidatePath, init_in_python_dir)):