mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
crypto/tls: make -update only regenerate transcripts for failing tests
Change-Id: Ie68fd4fe2879e6b5417a1a4240971e3d837bf115 Reviewed-on: https://go-review.googlesource.com/c/go/+/204377 Run-TryBot: Filippo Valsorda <filippo@golang.org> Run-TryBot: Katie Hockman <katie@golang.org> Reviewed-by: Katie Hockman <katie@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
parent
e580b52d55
commit
549614dac8
3 changed files with 39 additions and 37 deletions
|
@ -499,21 +499,15 @@ func peekError(conn net.Conn) error {
|
|||
}
|
||||
|
||||
func runClientTestForVersion(t *testing.T, template *clientTest, version, option string) {
|
||||
t.Run(version, func(t *testing.T) {
|
||||
// Make a deep copy of the template before going parallel.
|
||||
test := *template
|
||||
if template.config != nil {
|
||||
test.config = template.config.Clone()
|
||||
}
|
||||
// Make a deep copy of the template before going parallel.
|
||||
test := *template
|
||||
if template.config != nil {
|
||||
test.config = template.config.Clone()
|
||||
}
|
||||
test.name = version + "-" + test.name
|
||||
test.args = append([]string{option}, test.args...)
|
||||
|
||||
if !*update {
|
||||
t.Parallel()
|
||||
}
|
||||
|
||||
test.name = version + "-" + test.name
|
||||
test.args = append([]string{option}, test.args...)
|
||||
test.run(t, *update)
|
||||
})
|
||||
runTestAndUpdateIfNeeded(t, version, test.run, false)
|
||||
}
|
||||
|
||||
func runClientTestTLS10(t *testing.T, template *clientTest) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue