From 888cc5d50bec5514996dc86d589d2a17b90ab9ca Mon Sep 17 00:00:00 2001 From: Pavel Labath Date: Tue, 7 Nov 2017 10:36:42 +0000 Subject: 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 --- lldb/packages/Python/lldbsuite/test/lldbplatformutil.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lldb/packages/Python/lldbsuite/test/lldbplatformutil.py') 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 -- cgit v1.2.3