analyze_outcomes.py: ignore OpenSSL+dtls12+DES
No sure if it'd possible to build a version of OpenSSL that supports
both by tuning the config, but pretty sure improving testing for
single-DES ciphersuites is not the best use of our time in 2024.
Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
diff --git a/tests/scripts/analyze_outcomes.py b/tests/scripts/analyze_outcomes.py
index d50a04e..f88d799 100755
--- a/tests/scripts/analyze_outcomes.py
+++ b/tests/scripts/analyze_outcomes.py
@@ -113,6 +113,18 @@
'test_suite_psa_crypto_metadata;Asymmetric signature: pure EdDSA',
# Algorithm not supported yet
'test_suite_psa_crypto_metadata;Cipher: XTS',
+ # compat.sh tests with OpenSSL, DTLS 1.2 and singled-DES:
+ # we have no version of OpenSSL on the CI that supports both
+ # DTLS 1.2 and single-DES (1.0.2g is too recent for single-DES
+ # and 1.0.1j is too old for DTLS 1.2).
+ 'compat;O->m dtls12,no DES-CBC-SHA',
+ 'compat;O->m dtls12,no EDH-RSA-DES-CBC-SHA',
+ 'compat;O->m dtls12,yes DES-CBC-SHA',
+ 'compat;O->m dtls12,yes EDH-RSA-DES-CBC-SHA',
+ 'compat;m->O dtls12,no TLS-DHE-RSA-WITH-DES-CBC-SHA',
+ 'compat;m->O dtls12,no TLS-RSA-WITH-DES-CBC-SHA',
+ 'compat;m->O dtls12,yes TLS-DHE-RSA-WITH-DES-CBC-SHA',
+ 'compat;m->O dtls12,yes TLS-RSA-WITH-DES-CBC-SHA',
],
'full_coverage': False,
}