@@ -132,8 +132,6 @@ def _has_word_re(words: typing.Iterable[str],
132132 'Config: PSA_WANT_ALG_CBC_MAC' ,
133133 # Algorithm declared but not supported.
134134 'Config: PSA_WANT_ALG_XTS' ,
135- # Family declared but not supported.
136- 'Config: PSA_WANT_ECC_SECP_K1_224' ,
137135 # More granularity of key pair type enablement macros
138136 # than we care to test.
139137 # https://github.com/Mbed-TLS/mbedtls/issues/9590
@@ -200,16 +198,6 @@ def _has_word_re(words: typing.Iterable[str],
200198 # https://github.com/Mbed-TLS/mbedtls/issues/9592
201199 re .compile (r'.*ECDSA.*only deterministic supported' ),
202200 ],
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- ],
213201 'test_suite_psa_crypto_metadata' : [
214202 # Algorithms declared but not supported.
215203 # https://github.com/Mbed-TLS/mbedtls/issues/9579
@@ -223,10 +211,6 @@ def _has_word_re(words: typing.Iterable[str],
223211 'MAC: CBC_MAC-AES-256' ,
224212 ],
225213 '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 ,
230214 # We never test with DH key support disabled but support
231215 # for a DH group enabled. The dependencies of these test
232216 # cases don't really make sense.
@@ -265,12 +249,6 @@ def _has_word_re(words: typing.Iterable[str],
265249 # https://github.com/Mbed-TLS/mbedtls/issues/9592
266250 'PSA sign DETERMINISTIC_ECDSA(SHA_256): !ECDSA but DETERMINISTIC_ECDSA with ECC_KEY_PAIR(SECP_R1)' , #pylint: disable=line-too-long
267251 ],
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- ],
274252 'tls13-misc' : [
275253 # Disabled due to OpenSSL bug.
276254 # https://github.com/openssl/openssl/issues/10714
0 commit comments