@@ -10,7 +10,7 @@ import (
10
10
11
11
// Same as upstream, except we check for GOARCH=ecmascript instead of wasm.
12
12
// This override can be removed after https://github.com/golang/go/pull/51827
13
- // is available in the upstream (likely in Go 1.19).
13
+ // is available in the upstream (likely after Go 1.19).
14
14
func TestServerHandshakeContextCancellation (t * testing.T ) {
15
15
c , s := localPipe (t )
16
16
ctx , cancel := context .WithCancel (context .Background ())
@@ -42,7 +42,7 @@ func TestServerHandshakeContextCancellation(t *testing.T) {
42
42
43
43
// Same as upstream, except we check for GOARCH=ecmascript instead of wasm.
44
44
// This override can be removed after https://github.com/golang/go/pull/51827
45
- // is available in the upstream (likely in Go 1.19).
45
+ // is available in the upstream (likely after Go 1.19).
46
46
func TestClientHandshakeContextCancellation (t * testing.T ) {
47
47
c , s := localPipe (t )
48
48
ctx , cancel := context .WithCancel (context .Background ())
@@ -71,3 +71,15 @@ func TestClientHandshakeContextCancellation(t *testing.T) {
71
71
t .Error ("Client connection was not closed when the context was canceled" )
72
72
}
73
73
}
74
+
75
+ func TestVerifyConnection (t * testing.T ) {
76
+ // This should be rechecked after upgrading to Go 1.20 or later.
77
+ // go1.19.13/src/crypto/tls/handshake_test.go:testRSACertificateIssuer has expired.
78
+ t .Skip ("Skipping test that uses predefined certificate that expired in Jan 1st 2025" )
79
+ }
80
+
81
+ func TestResumptionKeepsOCSPAndSCT (t * testing.T ) {
82
+ // This should be rechecked after upgrading to Go 1.20 or later.
83
+ // go1.19.13/src/crypto/tls/handshake_test.go:testRSACertificateIssuer has expired.
84
+ t .Skip ("Skipping test that uses predefined certificate that expired in Jan 1st 2025" )
85
+ }
0 commit comments