mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-29 11:41:15 +03:00
analyze_outcomes.py: Ignore test cases depending on MBEDTLS_GENPRIME
For the component test_psa_crypto_config_accel_rsa_crypto, ignore the test cases depending on MBEDTLS_GENPRIME being enabled. When all RSA crypto is provided by drivers MBEDTLS_GENPRIME will not be enabled when it is not a configuration option anymore. Signed-off-by: Ronald Cron <ronald.cron@arm.com>
This commit is contained in:
@ -568,6 +568,10 @@ class DriverVSReference_rsa(outcome_analysis.DriverVSReference):
|
|||||||
'pk', 'pkwrite', 'pkparse'
|
'pk', 'pkwrite', 'pkparse'
|
||||||
]
|
]
|
||||||
IGNORED_TESTS = {
|
IGNORED_TESTS = {
|
||||||
|
'test_suite_bignum.misc': [
|
||||||
|
re.compile(r'.*\bmbedtls_mpi_is_prime.*'),
|
||||||
|
re.compile(r'.*\bmbedtls_mpi_gen_prime.*'),
|
||||||
|
],
|
||||||
'test_suite_config': [
|
'test_suite_config': [
|
||||||
re.compile(r'.*\bMBEDTLS_(PKCS1|RSA)_.*'),
|
re.compile(r'.*\bMBEDTLS_(PKCS1|RSA)_.*'),
|
||||||
re.compile(r'.*\bMBEDTLS_GENPRIME\b.*')
|
re.compile(r'.*\bMBEDTLS_GENPRIME\b.*')
|
||||||
|
Reference in New Issue
Block a user