Skip to content

Commit

Permalink
[lldb] Fix buildDsym signature in Builder base class
Browse files Browse the repository at this point in the history
The method was missing the optional argument `testname`.
  • Loading branch information
JDevlieghere committed Aug 19, 2020
1 parent bd2fa18 commit 804691a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lldb/packages/Python/lldbsuite/test/builders/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 804691a

Please sign in to comment.