summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-12-06 16:37:31 +0000
committerMatt Caswell <matt@openssl.org>2016-12-08 17:20:45 +0000
commit14d21b690a73e1598a97afa5ad9f642d53f63db7 (patch)
treed04e8e30abf7261b6c8b1011bbd8eaa33060b059 /test
parent22ab4b7dd34d01e23bc25e729541fefaa0f47502 (diff)
Suppress some BoringSSL test failures
The external BoringSSL tests had some failures as a result of the extensions refactor. This was due to a deliberate relaxation of the duplicate extensions checking code. We now only check known extensions for duplicates. Unknown extensions are ignored. This is allowed behaviour, so we suppress those BoringSSL tests. Perl changes reviewed by Richard Levitte. Non-perl changes reviewed by Rich Salz Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'test')
-rw-r--r--test/ossl_shim/ossl_config.json6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/ossl_shim/ossl_config.json b/test/ossl_shim/ossl_config.json
index 690dc6683f..c4a4254135 100644
--- a/test/ossl_shim/ossl_config.json
+++ b/test/ossl_shim/ossl_config.json
@@ -2,6 +2,12 @@
{
"DisabledTests" : {
"*TLS13*":"No TLS1.3 support yet",
+ "DuplicateExtensionClient-TLS1":"OpenSSL, by design, only checks for duplicates of known extensions and ignores others",
+ "DuplicateExtensionServer-TLS1":"OpenSSL, by design, only checks for duplicates of known extensions and ignores others",
+ "DuplicateExtensionClient-TLS11":"OpenSSL, by design, only checks for duplicates of known extensions and ignores others",
+ "DuplicateExtensionServer-TLS11":"OpenSSL, by design, only checks for duplicates of known extensions and ignores others",
+ "DuplicateExtensionServer-TLS12":"OpenSSL, by design, only checks for duplicates of known extensions and ignores others",
+ "DuplicateExtensionClient-TLS12":"OpenSSL, by design, only checks for duplicates of known extensions and ignores others",
"UnauthenticatedECDH":"Test failure - reason unknown",
"SkipServerKeyExchange":"Test failure - reason unknown",
"FragmentAlert-DTLS":"Test failure - reason unknown",