From 0ed9e78bf7541959aa0cd90715cb49543bb174e8 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/check_files.py b/tests/scripts/check_files.py index 42f2e82c9..e1c6478fd 100755 --- a/tests/scripts/check_files.py +++ b/tests/scripts/check_files.py @@ -122,7 +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/pkcs7_data.*\.bin\Z', + r'tests/data_files/.*\.bin\Z', ] BINARY_FILE_PATH_RE = re.compile('|'.join(BINARY_FILE_PATH_RE_LIST))