aboutsummaryrefslogtreecommitdiff
path: root/lldb/packages/Python/lldbsuite/test
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2020-06-02 16:40:07 -0700
committerJonas Devlieghere <jonas@devlieghere.com>2020-06-02 16:49:58 -0700
commit393ac216489773e3676ec7d80c3d993f78a29b6a (patch)
tree773f94d53029e2eaa3b3c5123d535d8d4a593960 /lldb/packages/Python/lldbsuite/test
parent81dd3a47189ec2e2c83d5948748dcfadb9463923 (diff)
downloadllvm-393ac216489773e3676ec7d80c3d993f78a29b6a.zip
llvm-393ac216489773e3676ec7d80c3d993f78a29b6a.tar.gz
llvm-393ac216489773e3676ec7d80c3d993f78a29b6a.tar.bz2
[lldb/Test] Pass Make arguments in invocation instead of environment
The Darwin builder is passing some of the make arguments trough the environment instead of the command line. Update the dsym builder to do the same as the other variants.
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r--lldb/packages/Python/lldbsuite/test/plugins/builder_darwin.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/plugins/builder_darwin.py b/lldb/packages/Python/lldbsuite/test/plugins/builder_darwin.py
index e109f91..e9fc825 100644
--- a/lldb/packages/Python/lldbsuite/test/plugins/builder_darwin.py
+++ b/lldb/packages/Python/lldbsuite/test/plugins/builder_darwin.py
@@ -16,7 +16,11 @@ def buildDsym(
["MAKE_DSYM=YES",
getArchSpec(architecture),
getCCSpec(compiler),
- "all", getCmdLine(dictionary)])
+ getDsymutilSpec(),
+ getSDKRootSpec(),
+ getModuleCacheSpec(),
+ "all",
+ getCmdLine(dictionary)])
runBuildCommands(commands, sender=sender)