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. 383
      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 (
"encoding/json"
"fmt"
"os"
"time"
)
@ -44,7 +45,7 @@ func NewResults() *Results {
func (t *Results) addResult(name, result, expected string) {
if _, found := t.Tests[name]; found {
panic(name)
panic(fmt.Sprintf("duplicate test name %q", name))
}
t.Tests[name] = Result{
Actual: result,

Loading…
Cancel
Save