[Lldb-commits] [lldb] 804691a - [lldb] Fix buildDsym signature in Builder base class

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Wed Aug 19 09:47:43 PDT 2020


Author: Jonas Devlieghere
Date: 2020-08-19T09:47:25-07:00
New Revision: 804691adc9c93eb2ac68baf531e1a6f8b6fdb0c1

URL: https://github.com/llvm/llvm-project/commit/804691adc9c93eb2ac68baf531e1a6f8b6fdb0c1
DIFF: https://github.com/llvm/llvm-project/commit/804691adc9c93eb2ac68baf531e1a6f8b6fdb0c1.diff

LOG: [lldb] Fix buildDsym signature in Builder base class

The method was missing the optional argument `testname`.

Added: 
    

Modified: 
    lldb/packages/Python/lldbsuite/test/builders/builder.py

Removed: 
    


################################################################################
diff  --git a/lldb/packages/Python/lldbsuite/test/builders/builder.py b/lldb/packages/Python/lldbsuite/test/builders/builder.py
index 2b0873c37501..659e619e3d6a 100644
--- a/lldb/packages/Python/lldbsuite/test/builders/builder.py
+++ b/lldb/packages/Python/lldbsuite/test/builders/builder.py
@@ -231,7 +231,8 @@ def buildDsym(self,
                   architecture=None,
                   compiler=None,
                   dictionary=None,
-                  testdir=None):
+                  testdir=None,
+                  testname=None):
         # False signifies that we cannot handle building with dSYM.
         return False
 


        


More information about the lldb-commits mailing list