From 68b0ad1512828f7aeb8fb2c0498cee3d46453df7 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Wed, 7 Jan 2026 16:19:48 +0100 Subject: [PATCH] Adapt to the split of test_suite_shax Signed-off-by: Gilles Peskine --- tests/scripts/analyze_outcomes.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/scripts/analyze_outcomes.py b/tests/scripts/analyze_outcomes.py index d5843f867e..42464a845e 100755 --- a/tests/scripts/analyze_outcomes.py +++ b/tests/scripts/analyze_outcomes.py @@ -230,7 +230,8 @@ class DriverVSReference_hash(outcome_analysis.DriverVSReference): REFERENCE = 'test_psa_crypto_config_reference_hash_use_psa' DRIVER = 'test_psa_crypto_config_accel_hash_use_psa' IGNORED_SUITES = [ - 'shax', 'mdx', # the software implementations that are being excluded + # the software implementations that are being excluded + 'mdx', 'sha1', 'sha256', 'sha3', 'sha512', 'shax', 'md.psa', # purposefully depends on whether drivers are present 'psa_crypto_low_hash.generated', # testing the builtins ] @@ -252,7 +253,7 @@ class DriverVSReference_hmac(outcome_analysis.DriverVSReference): IGNORED_SUITES = [ # These suites require legacy hash support, which is disabled # in the accelerated component. - 'shax', 'mdx', + 'mdx', 'sha1', 'sha256', 'sha3', 'sha512', 'shax', # This suite tests builtins directly, but these are missing # in the accelerated case. 'psa_crypto_low_hash.generated',