summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHsin-Yi Chen <hsinyichen@google.com>2018-09-20 14:27:54 +0800
committerHsin-Yi Chen <hsinyichen@google.com>2018-11-20 03:47:20 +0000
commit1d61b4b68250c5e97aa495083818a8092f6a9915 (patch)
treeefd4bf0c75799c7ee841ded72f50b23b52c2b47b
parent41e7d12fcbc376fa25e03ea9d723684142248df4 (diff)
downloadvndk-1d61b4b68250c5e97aa495083818a8092f6a9915.tar.gz
Do not test ELF files that require special program interpreter
Bug: 115567177 Test: vts-tradefed run vts -m VtsVndkDependency Change-Id: I788aa564d132c3c62692a91ef5be7587a5ed4fae
-rw-r--r--dependency/VtsVndkDependencyTest.py43
1 files changed, 39 insertions, 4 deletions
diff --git a/dependency/VtsVndkDependencyTest.py b/dependency/VtsVndkDependencyTest.py
index c442cbf..4878978 100644
--- a/dependency/VtsVndkDependencyTest.py
+++ b/dependency/VtsVndkDependencyTest.py
@@ -65,6 +65,9 @@ class VtsVndkDependencyTest(base_test.BaseTestClass):
"/odm/{LIB}/hw", "/odm/{LIB}/egl", "/odm/{LIB}",
"/vendor/{LIB}/hw", "/vendor/{LIB}/egl", "/vendor/{LIB}"
]
+ _DEFAULT_PROGRAM_INTERPRETERS = [
+ "/system/bin/linker", "/system/bin/linker64"
+ ]
class ElfObject(object):
"""Contains dependencies of an ELF file on target device.
@@ -120,6 +123,40 @@ class VtsVndkDependencyTest(base_test.BaseTestClass):
logging.info("Delete %s", self._temp_dir)
shutil.rmtree(self._temp_dir)
+ def _IsElfObjectForAp(self, elf, target_path, abi_list):
+ """Checks whether an ELF object is for application processor.
+
+ Args:
+ elf: The object of elf_parser.ElfParser.
+ target_path: The path to the ELF file on target.
+ abi_list: A list of strings, the ABIs of the application processor.
+
+ Returns:
+ A boolean, whether the ELF object is for application processor.
+ """
+ if not any(elf.MatchCpuAbi(x) for x in abi_list):
+ logging.debug("%s does not match the ABI", target_path)
+ return False
+
+ # b/115567177 Skip an ELF file if it meets the following 3 conditions:
+ # The ELF type is executable.
+ if not elf.IsExecutable():
+ return True
+
+ # It requires special program interpreter.
+ interp = elf.GetProgramInterpreter()
+ if not interp or interp in self._DEFAULT_PROGRAM_INTERPRETERS:
+ return True
+
+ # It does not have execute permission in the file system.
+ permissions = target_file_utils.GetPermission(target_path,
+ self._dut.shell)
+ if target_file_utils.IsExecutable(permissions):
+ return True
+
+ logging.debug("%s is not for application processor", target_path)
+ return False
+
def _LoadElfObjects(self, host_dir, target_dir, abi_list,
elf_error_handler):
"""Scans a host directory recursively and loads all ELF files in it.
@@ -146,11 +183,9 @@ class VtsVndkDependencyTest(base_test.BaseTestClass):
except elf_parser.ElfError:
logging.debug("%s is not an ELF file", target_path)
continue
- if not any(elf.MatchCpuAbi(x) for x in abi_list):
- logging.debug("%s does not match the ABI", target_path)
- elf.Close()
- continue
try:
+ if not self._IsElfObjectForAp(elf, target_path, abi_list):
+ continue
deps = elf.ListDependencies()
except elf_parser.ElfError as e:
elf_error_handler(target_path, e)