From 4beeb0ce663754de8b8af8f0c9475bea3a5dcdad Mon Sep 17 00:00:00 2001 From: Sam Berry Date: Thu, 27 Jun 2024 14:18:22 +0100 Subject: [PATCH] Add TLS: password protected... to ignored_tests list Signed-off-by: Sam Berry --- tests/scripts/analyze_outcomes.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/scripts/analyze_outcomes.py b/tests/scripts/analyze_outcomes.py index eb2469495e..14daf9d912 100755 --- a/tests/scripts/analyze_outcomes.py +++ b/tests/scripts/analyze_outcomes.py @@ -344,6 +344,12 @@ KNOWN_TASKS = { 'Key ASN1 (Encrypted key PKCS5, trailing garbage data)', re.compile(r'Parse (RSA|EC) Key .*\(.* ([Ee]ncrypted|password).*\)'), ], + # Encrypted keys are not supported so far. + 'ssl-opt': [ + 'TLS: password protected server key', + 'TLS: password protected client key', + 'TLS: password protected server key, two certificates', + ], } } },