Create a valid triple in the Darwin builder. Currently it was
incorrectly treating the os and version as two separate components in
the triple.
Details
Details
Diff Detail
Diff Detail
Event Timeline
Comment Actions
Yup that's wrong. Personally I would only append env to the list if non-empty. Thanks!
Comment Actions
Skip the environment if it's empty and avoid a TypeError when concatenating 'NoneType' and 'str'.
Comment Actions
thanks!
lldb/packages/Python/lldbsuite/test/builders/darwin.py | ||
---|---|---|
62 | So this tests for the empty string? |
lldb/packages/Python/lldbsuite/test/builders/darwin.py | ||
---|---|---|
62 | It tests for both, but None is already caught earlier. |
So this tests for the empty string?