mirror of
https://github.com/Mbed-TLS/mbedtls-framework.git
synced 2026-08-16 16:17:46 +00:00
Allow the tf_psa prefix for functions
Allow functions to have the prefix 'tf_psa' in check_names.py. This is needed for new functions added in TF-PSA-Crypto. Signed-off-by: David Horstmann <[email protected]>
This commit is contained in:
@@ -56,7 +56,7 @@ from mbedtls_framework import build_tree
|
||||
PUBLIC_MACRO_PATTERN = r"^(MBEDTLS|PSA|TF_PSA)_[0-9A-Z_]*[0-9A-Z]$"
|
||||
INTERNAL_MACRO_PATTERN = r"^[0-9A-Za-z_]*[0-9A-Z]$"
|
||||
CONSTANTS_PATTERN = PUBLIC_MACRO_PATTERN
|
||||
IDENTIFIER_PATTERN = r"^(mbedtls|psa)_[0-9a-z_]*[0-9a-z]$"
|
||||
IDENTIFIER_PATTERN = r"^(mbedtls|psa|tf_psa)_[0-9a-z_]*[0-9a-z]$"
|
||||
|
||||
class Match(): # pylint: disable=too-few-public-methods
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user