tags 1091497 patch
thanks
Hi. In case nobody noticed, the certificate used in the failing tests
expires on 2025-01-01, which is four days from now.
In case it helps, the attached patch disables the "time bomb"
before it explodes.
Could any of the usual uploaders take care of this?
Thanks.
--- a/src/crypto/tls/handshake_client_test.go
+++ b/src/crypto/tls/handshake_client_test.go
@@ -1556,6 +1556,7 @@
}
func TestVerifyConnection(t *testing.T) {
+ t.Skip("Skipping due to soon to be expired test certificates.")
t.Run("TLSv12", func(t *testing.T) { testVerifyConnection(t, VersionTLS12) })
t.Run("TLSv13", func(t *testing.T) { testVerifyConnection(t, VersionTLS13) })
}
@@ -2523,6 +2524,7 @@
}
func TestResumptionKeepsOCSPAndSCT(t *testing.T) {
+ t.Skip("Skipping due to soon to be expired test certificates.")
t.Run("TLSv12", func(t *testing.T) { testResumptionKeepsOCSPAndSCT(t, VersionTLS12) })
t.Run("TLSv13", func(t *testing.T) { testResumptionKeepsOCSPAndSCT(t, VersionTLS13) })
}
--- a/src/crypto/tls/handshake_server_test.go
+++ b/src/crypto/tls/handshake_server_test.go
@@ -493,6 +493,7 @@
}
func TestCrossVersionResume(t *testing.T) {
+ t.Skip("Skipping due to soon to be expired test certificates.")
t.Run("TLSv12", func(t *testing.T) { testCrossVersionResume(t, VersionTLS12) })
t.Run("TLSv13", func(t *testing.T) { testCrossVersionResume(t, VersionTLS13) })
}