@@ -132,8 +132,6 @@ def _has_word_re(words: typing.Iterable[str],
132
132
'Config: PSA_WANT_ALG_CBC_MAC' ,
133
133
# Algorithm declared but not supported.
134
134
'Config: PSA_WANT_ALG_XTS' ,
135
- # Family declared but not supported.
136
- 'Config: PSA_WANT_ECC_SECP_K1_224' ,
137
135
# More granularity of key pair type enablement macros
138
136
# than we care to test.
139
137
# https://github.com/Mbed-TLS/mbedtls/issues/9590
@@ -200,16 +198,6 @@ def _has_word_re(words: typing.Iterable[str],
200
198
# https://github.com/Mbed-TLS/mbedtls/issues/9592
201
199
re .compile (r'.*ECDSA.*only deterministic supported' ),
202
200
],
203
- 'test_suite_psa_crypto_generate_key.generated' : [
204
- # Ignore mechanisms that are not implemented, except
205
- # for public keys for which we always test that
206
- # psa_generate_key() returns PSA_ERROR_INVALID_ARGUMENT
207
- # regardless of whether the specific key type is supported.
208
- _has_word_re ((mech
209
- for mech in _PSA_MECHANISMS_NOT_IMPLEMENTED
210
- if not mech .startswith ('ECC_PUB' )),
211
- exclude = r'ECC_PUB' ),
212
- ],
213
201
'test_suite_psa_crypto_metadata' : [
214
202
# Algorithms declared but not supported.
215
203
# https://github.com/Mbed-TLS/mbedtls/issues/9579
@@ -223,10 +211,6 @@ def _has_word_re(words: typing.Iterable[str],
223
211
'MAC: CBC_MAC-AES-256' ,
224
212
],
225
213
'test_suite_psa_crypto_not_supported.generated' : [
226
- # It is a bug that not-supported test cases aren't getting
227
- # run for never-implemented key types.
228
- # https://github.com/Mbed-TLS/mbedtls/issues/7915
229
- PSA_MECHANISM_NOT_IMPLEMENTED_SEARCH_RE ,
230
214
# We never test with DH key support disabled but support
231
215
# for a DH group enabled. The dependencies of these test
232
216
# cases don't really make sense.
@@ -265,12 +249,6 @@ def _has_word_re(words: typing.Iterable[str],
265
249
# https://github.com/Mbed-TLS/mbedtls/issues/9592
266
250
'PSA sign DETERMINISTIC_ECDSA(SHA_256): !ECDSA but DETERMINISTIC_ECDSA with ECC_KEY_PAIR(SECP_R1)' , #pylint: disable=line-too-long
267
251
],
268
- 'test_suite_psa_crypto_storage_format.current' : [
269
- PSA_MECHANISM_NOT_IMPLEMENTED_SEARCH_RE ,
270
- ],
271
- 'test_suite_psa_crypto_storage_format.v0' : [
272
- PSA_MECHANISM_NOT_IMPLEMENTED_SEARCH_RE ,
273
- ],
274
252
'tls13-misc' : [
275
253
# Disabled due to OpenSSL bug.
276
254
# https://github.com/openssl/openssl/issues/10714
0 commit comments