diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2020-08-07 10:06:38 -0700 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2020-08-07 11:13:18 -0700 |
commit | f1d525734f86ac4b1a7bf80f3a82291864026de0 (patch) | |
tree | f5488029bd0d7fa1168b66d8d4468ce0601acf02 /lldb/packages/Python/lldbsuite/test/configuration.py | |
parent | c354b2e3bfe6709ffd78d0fcd017b7e5be7a7a23 (diff) | |
download | llvm-f1d525734f86ac4b1a7bf80f3a82291864026de0.zip llvm-f1d525734f86ac4b1a7bf80f3a82291864026de0.tar.gz llvm-f1d525734f86ac4b1a7bf80f3a82291864026de0.tar.bz2 |
[lldb] Store the Apple SDK in dotest's configuration.
This patch stores the --apple-sdk argument in the dotest configuration.
When it's set, use it instead of the triple to determine the current
platform.
Differential revision: https://reviews.llvm.org/D85537
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/configuration.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/configuration.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/configuration.py b/lldb/packages/Python/lldbsuite/test/configuration.py index 251787b..6f4b89c 100644 --- a/lldb/packages/Python/lldbsuite/test/configuration.py +++ b/lldb/packages/Python/lldbsuite/test/configuration.py @@ -117,6 +117,9 @@ lldb_platform_name = None lldb_platform_url = None lldb_platform_working_dir = None +# Apple SDK +apple_sdk = None + # The base directory in which the tests are being built. test_build_dir = None |