Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@google.com>2016-07-14 03:57:22 +0300
committerCQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>2016-07-14 18:22:02 +0300
commit6e6abe1f4401dffd38c662964e0f94cd5615fadf (patch)
tree094069dc7dad72179b1c3a17e3596ccade2627c9
parent2f8935de0f9619992407cc8158e88f0ea933e6f6 (diff)
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>
-rw-r--r--ssl/test/runner/runner.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/ssl/test/runner/runner.go b/ssl/test/runner/runner.go
index 7c86553a..e5494bab 100644
--- a/ssl/test/runner/runner.go
+++ b/ssl/test/runner/runner.go
@@ -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