summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHsin-Yi Chen <hsinyichen@google.com>2023-03-31 09:07:47 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-03-31 09:07:47 +0000
commit0755a1755700998e746429dae014a1f1dccfe2b4 (patch)
treebe1aefb6079b0f12764691a388e0c3f3913a0466
parent59a9acc6ccf3cedbb45e7cae20564ca9ec0611df (diff)
parent414f20cbc5ad62c7865577de6b23d9701a08191b (diff)
downloadvndk-0755a1755700998e746429dae014a1f1dccfe2b4.tar.gz
Original change: https://android-review.googlesource.com/c/platform/test/vts-testcase/vndk/+/2506869 Change-Id: I54628cb90de51da35f279991abb8825252d393e3 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--files/vts_vndk_files_test.py18
1 files changed, 12 insertions, 6 deletions
diff --git a/files/vts_vndk_files_test.py b/files/vts_vndk_files_test.py
index 017ae9c..faa3e6a 100644
--- a/files/vts_vndk_files_test.py
+++ b/files/vts_vndk_files_test.py
@@ -64,19 +64,21 @@ class VtsVndkFilesTest(unittest.TestCase):
return []
return self._dut.FindFiles(dir_path, "*", "!", "-type", "d")
- def _Fail(self, unexpected_paths):
+ def _Fail(self, unexpected_paths, message):
"""Logs error and fails current test.
Args:
unexpected_paths: A list of strings, the paths to be shown in the
log message.
+ message: A string, the error message.
"""
logging.error("Unexpected files:\n%s", "\n".join(unexpected_paths))
assert_lines = unexpected_paths[:20]
if len(unexpected_paths) > 20:
- assert_lines.append("...")
- assert_lines.append(
- "Total number of errors: %d" % len(unexpected_paths))
+ assert_lines.extend([
+ "...",
+ "Total number of errors: %d" % len(unexpected_paths)])
+ assert_lines.append(message)
self.fail("\n".join(assert_lines))
def _TestVndkDirectory(self, vndk_dir, vndk_list_names):
@@ -95,7 +97,9 @@ class VtsVndkFilesTest(unittest.TestCase):
unexpected = [x for x in self._ListFiles(vndk_dir) if
target_path_module.basename(x) not in vndk_set]
if unexpected:
- self._Fail(unexpected)
+ self._Fail(unexpected,
+ "The above libraries are not %s." %
+ ", ".join(vndk_list_names))
def _TestNotInVndkDirecotory(self, vndk_dir, vndk_list_names, except_libs):
"""Verifies that VNDK directory doesn't contain specific files.
@@ -116,7 +120,9 @@ class VtsVndkFilesTest(unittest.TestCase):
unexpected = [x for x in self._ListFiles(vndk_dir) if
target_path_module.basename(x) in vndk_set]
if unexpected:
- self._Fail(unexpected)
+ self._Fail(unexpected,
+ "%s must not contain %s libraries." %
+ (vndk_dir, ", ",join(vndk_list_names)))
def _TestVndkCoreDirectory(self, bitness):
"""Verifies that VNDK directory doesn't contain extra files."""