Skip to content

Commit e8837d5

Browse files
committed
security: skip flaky TestTLSCipherRestrict
This commit skips flaky test TestTLSCipherRestrict for CI. Informs: #153802 Release note: none
1 parent 1b92a23 commit e8837d5

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

pkg/security/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ go_test(
9494
"//pkg/server",
9595
"//pkg/testutils",
9696
"//pkg/testutils/serverutils",
97+
"//pkg/testutils/skip",
9798
"//pkg/util/envutil",
9899
"//pkg/util/leaktest",
99100
"//pkg/util/log",

pkg/security/tls_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import (
2222
"github.com/cockroachdb/cockroach/pkg/security/username"
2323
"github.com/cockroachdb/cockroach/pkg/testutils"
2424
"github.com/cockroachdb/cockroach/pkg/testutils/serverutils"
25+
"github.com/cockroachdb/cockroach/pkg/testutils/skip"
2526
"github.com/cockroachdb/cockroach/pkg/util/envutil"
2627
"github.com/cockroachdb/cockroach/pkg/util/leaktest"
2728
"github.com/cockroachdb/cockroach/pkg/util/log"
@@ -123,6 +124,7 @@ func verifyX509Cert(cert *x509.Certificate, dnsName string, roots *x509.CertPool
123124
func TestTLSCipherRestrict(t *testing.T) {
124125
defer leaktest.AfterTest(t)()
125126
defer log.Scope(t).Close(t)
127+
skip.WithIssue(t, 153802)
126128

127129
tests := []struct {
128130
name string

0 commit comments

Comments
 (0)