diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2016-05-16 03:13:05 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2016-05-16 03:13:05 +0000 |
commit | 81eadde6caf1660592d29d3069f973567edf068e (patch) | |
tree | 51e46854ab632d04c01619ae0525afeca0ca9ac1 /lldb/packages/Python/lldbsuite/test/dotest.py | |
parent | 0624b822607f2bc3366281d23bfca8de0257c6ef (diff) | |
download | bcm5719-llvm-81eadde6caf1660592d29d3069f973567edf068e.tar.gz bcm5719-llvm-81eadde6caf1660592d29d3069f973567edf068e.zip |
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
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/dotest.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py index 4a38cdade5a..6c35d81e3ab 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest.py +++ b/lldb/packages/Python/lldbsuite/test/dotest.py @@ -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)): |