From d24e037dd1742af979d046cff4be0ea583f3791c Mon Sep 17 00:00:00 2001 From: Yuto Takano Date: Fri, 6 Aug 2021 16:42:33 +0100 Subject: [PATCH] Warn user if files are excluded from search Signed-off-by: Yuto Takano --- tests/scripts/check-names.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/scripts/check-names.py b/tests/scripts/check-names.py index b9e028bdd3..406810b8c4 100755 --- a/tests/scripts/check-names.py +++ b/tests/scripts/check-names.py @@ -193,6 +193,10 @@ class NameCheck(object): internal variable self.parse_result. """ self.log.info("Parsing source code...") + self.log.debug( + "The following files are excluded from the search: {}" + .format(str(self.excluded_files)) + ) m_headers = self.get_files("h", os.path.join("include", "mbedtls")) p_headers = self.get_files("h", os.path.join("include", "psa"))