diff options
author | Pavel Labath <labath@google.com> | 2017-11-07 10:36:42 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2017-11-07 10:36:42 +0000 |
commit | 888cc5d50bec5514996dc86d589d2a17b90ab9ca (patch) | |
tree | aaa95b6a92d0cf26cb9fda9152a0af6293c5e2fa /lldb/packages/Python/lldbsuite/test/lldbplatformutil.py | |
parent | 881fe8ecb2d3f525e8ee844fd0a083cbe91752ee (diff) | |
download | bcm5719-llvm-888cc5d50bec5514996dc86d589d2a17b90ab9ca.tar.gz bcm5719-llvm-888cc5d50bec5514996dc86d589d2a17b90ab9ca.zip |
test: Clean up finalize_build_dictionary
We only support API>=16 now, so we don't need to check the API level of
the android device.
llvm-svn: 317562
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lldbplatformutil.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lldbplatformutil.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbplatformutil.py b/lldb/packages/Python/lldbsuite/test/lldbplatformutil.py index dad604f60b8..188f9e51d9f 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbplatformutil.py +++ b/lldb/packages/Python/lldbsuite/test/lldbplatformutil.py @@ -100,8 +100,7 @@ def finalize_build_dictionary(dictionary): if dictionary is None: dictionary = {} dictionary["OS"] = "Android" - if android_device_api() >= 16: - dictionary["PIE"] = 1 + dictionary["PIE"] = 1 return dictionary |