Run extension tests at all protocols.

Change-Id: Ied0ef856de3a1ae2c65b10645fbce614726f4e20
Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/44989
Commit-Queue: David Benjamin <davidben@google.com>
Reviewed-by: Adam Langley <agl@google.com>
chromium-5359
David Benjamin 4 years ago committed by CQ bot account: commit-bot@chromium.org
parent 47d1274fd2
commit e606f79c5b
  1. 3051
      ssl/test/runner/runner.go
  2. 3
      util/testresult/testresult.go

File diff suppressed because it is too large Load Diff

@ -18,6 +18,7 @@ package testresult
import ( import (
"encoding/json" "encoding/json"
"fmt"
"os" "os"
"time" "time"
) )
@ -44,7 +45,7 @@ func NewResults() *Results {
func (t *Results) addResult(name, result, expected string) { func (t *Results) addResult(name, result, expected string) {
if _, found := t.Tests[name]; found { if _, found := t.Tests[name]; found {
panic(name) panic(fmt.Sprintf("duplicate test name %q", name))
} }
t.Tests[name] = Result{ t.Tests[name] = Result{
Actual: result, Actual: result,

Loading…
Cancel
Save