Temporarily skip resume tests in TLS 1.3.

Resumption is not yet implemented.

Change-Id: I7c3df2912456a0e0d5339d7b0b1f5819f958e900
Reviewed-on: https://boringssl-review.googlesource.com/8770
Reviewed-by: David Benjamin <davidben@google.com>
Commit-Queue: David Benjamin <davidben@google.com>
CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
This commit is contained in:
David Benjamin 2016-07-13 20:57:22 -04:00 committed by CQ bot account: commit-bot@chromium.org
parent 2f8935de0f
commit 6e6abe1f44

View File

@ -4286,7 +4286,14 @@ func addExtensionTests() {
func addResumptionVersionTests() {
for _, sessionVers := range tlsVersions {
// TODO(davidben,svaldez): Implement resumption in TLS 1.3.
if sessionVers.version >= VersionTLS13 {
continue
}
for _, resumeVers := range tlsVersions {
if resumeVers.version >= VersionTLS13 {
continue
}
cipher := TLS_RSA_WITH_AES_128_CBC_SHA
if sessionVers.version >= VersionTLS13 || resumeVers.version >= VersionTLS13 {
// TLS 1.3 only shares ciphers with TLS 1.2, so