From 7fcc7bc57699ce57fef8e590a0fb502ea6f65c0e Mon Sep 17 00:00:00 2001 From: Jaeden Amero Date: Tue, 26 Feb 2019 11:53:36 +0000 Subject: [PATCH] check-names: Enable referencing Mbed TLS macros Add a macro whitelist which enables us to refer to Mbed TLS macros that are no longer present in Mbed Crypto. --- tests/scripts/list-macros.sh | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/tests/scripts/list-macros.sh b/tests/scripts/list-macros.sh index 5982bb7a02..3fa66f1910 100755 --- a/tests/scripts/list-macros.sh +++ b/tests/scripts/list-macros.sh @@ -9,8 +9,15 @@ fi HEADERS=$( ls include/mbedtls/*.h include/psa/*.h | egrep -v 'compat-1\.3\.h' ) -sed -n -e 's/.*#define \([a-zA-Z0-9_]*\).*/\1/p' $HEADERS \ - | egrep -v '^(asm|inline|EMIT|_CRT_SECURE_NO_DEPRECATE)$|^MULADDC_' \ - | sort -u > macros +# White-list macros we want to be able to refer to that don't exist in the +# crypto library, useful when referring to macros in Mbed TLS from comments. +WHITELIST='MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS' + +# Generate a list of macros and combine it with the white-listed macros in +# sorted order. +{ sed -n -e 's/.*#define \([a-zA-Z0-9_]*\).*/\1/p' $HEADERS | + egrep -v '^(asm|inline|EMIT|_CRT_SECURE_NO_DEPRECATE)$|^MULADDC_'; + printf '%s\n' $WHITELIST; +} | sort -u > macros wc -l macros