[lldb] Fix buildDsym signature in Builder base class
authorJonas Devlieghere <jonas@devlieghere.com>
Wed, 19 Aug 2020 16:08:40 +0000 (09:08 -0700)
committerJonas Devlieghere <jonas@devlieghere.com>
Wed, 19 Aug 2020 16:47:25 +0000 (09:47 -0700)
The method was missing the optional argument `testname`.

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

index 2b0873c..659e619 100644 (file)
@@ -231,7 +231,8 @@ class Builder:
                   architecture=None,
                   compiler=None,
                   dictionary=None,
-                  testdir=None):
+                  testdir=None,
+                  testname=None):
         # False signifies that we cannot handle building with dSYM.
         return False