From a0c9c6684d949105d9629872ab79d58870fd7d62 Mon Sep 17 00:00:00 2001 From: Valerio Setti Date: Fri, 29 Dec 2023 14:14:11 +0100 Subject: [PATCH] analyze_outcomes: ignore only test concerning AES/ARIA/Camellia in CMAC Signed-off-by: Valerio Setti --- tests/scripts/analyze_outcomes.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/scripts/analyze_outcomes.py b/tests/scripts/analyze_outcomes.py index bdbdbddbc0..3b11ca24c8 100755 --- a/tests/scripts/analyze_outcomes.py +++ b/tests/scripts/analyze_outcomes.py @@ -546,10 +546,16 @@ KNOWN_TASKS = { # order for the cipher module (actually cipher_wrapper) to work # properly. However these symbols are disabled in the accelerated # component so we ignore them. - 'cipher.ccm', 'cipher.gcm', 'cmac', 'cipher.aes', 'cipher.aria', + 'cipher.ccm', 'cipher.gcm', 'cipher.aes', 'cipher.aria', 'cipher.camellia', ], 'ignored_tests': { + 'test_suite_cmac': [ + # Following tests require AES_C/ARIA_C/CAMELLIA_C to be enabled, + # but these are not available in the accelerated component. + 'CMAC null arguments', + re.compile('CMAC.* (AES|ARIA|Camellia).*'), + ], 'test_suite_cipher.padding': [ # Following tests require AES_C/CAMELLIA_C to be enabled, # but these are not available in the accelerated component.