From 66548d1fa7b626aa783f967d2d424cd1a4e26ee2 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Thu, 5 Jan 2023 20:27:18 +0100 Subject: [PATCH] Treat more *.bin files as binary Signed-off-by: Gilles Peskine --- tests/scripts/check_files.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/scripts/check_files.py b/tests/scripts/check_files.py index 5c18702def..e1c6478fd9 100755 --- a/tests/scripts/check_files.py +++ b/tests/scripts/check_files.py @@ -122,6 +122,7 @@ BINARY_FILE_PATH_RE_LIST = [ r'tests/data_files/.*\.req\.[^/]+\Z', r'tests/data_files/.*malformed[^/]+\Z', r'tests/data_files/format_pkcs12\.fmt\Z', + r'tests/data_files/.*\.bin\Z', ] BINARY_FILE_PATH_RE = re.compile('|'.join(BINARY_FILE_PATH_RE_LIST))