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>
This commit is contained in:
David Benjamin
2021-01-12 18:20:44 -05:00
committed by CQ bot account: commit-bot@chromium.org
parent 47d1274fd2
commit e606f79c5b
2 changed files with 1719 additions and 1635 deletions
+233 -150
View File
File diff suppressed because it is too large Load Diff
+2 -1
View File
@@ -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,