From 9b0f9e77a0c10e70d0a0a2f9715f5d534d879493 Mon Sep 17 00:00:00 2001 From: Gabor Mezei Date: Wed, 26 Jun 2024 18:08:17 +0200 Subject: [PATCH] Simplify set creation Signed-off-by: Gabor Mezei --- scripts/config.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/scripts/config.py b/scripts/config.py index cd6a4b4f4a..a9856679d9 100755 --- a/scripts/config.py +++ b/scripts/config.py @@ -188,11 +188,9 @@ PSA_UNSTABLE_FEATURE = frozenset([ 'PSA_WANT_ECC_SECP_K1_224' ]) -EXCLUDE_FROM_CRYPTO = frozenset( - PSA_UNSUPPORTED_FEATURE | - PSA_DEPRECATED_FEATURE | - PSA_UNSTABLE_FEATURE -) +EXCLUDE_FROM_CRYPTO = PSA_UNSUPPORTED_FEATURE | \ + PSA_DEPRECATED_FEATURE | \ + PSA_UNSTABLE_FEATURE # The goal of the full configuration is to have everything that can be tested # together. This includes deprecated or insecure options. It excludes: