[Lldb-commits] [lldb] r269626 - test: add missing parameter

Saleem Abdulrasool via lldb-commits lldb-commits at lists.llvm.org
Sun May 15 20:13:05 PDT 2016


Author: compnerd
Date: Sun May 15 22:13:05 2016
New Revision: 269626

URL: http://llvm.org/viewvc/llvm-project?rev=269626&view=rev
Log:
test: add missing parameter

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

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/dotest.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/dotest.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/dotest.py?rev=269626&r1=269625&r2=269626&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/dotest.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/dotest.py Sun May 15 22:13:05 2016
@@ -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)):




More information about the lldb-commits mailing list