Skip to content

Commit

Permalink
kv/kvserver/tenantrate: skip TestCloser
Browse files Browse the repository at this point in the history
Refs: #86822

Reason: flaky test

Generated by bin/skip-test.

Release justification: non-production code changes

Release note: None
  • Loading branch information
irfansharif committed Aug 24, 2022
1 parent ab49d4f commit 35e3879
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkg/kv/kvserver/tenantrate/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ go_test(
"//pkg/settings/cluster",
"//pkg/testutils",
"//pkg/testutils/metrictestutils",
"//pkg/testutils/skip",
"//pkg/util/leaktest",
"//pkg/util/metric",
"//pkg/util/timeutil",
Expand Down
2 changes: 2 additions & 0 deletions pkg/kv/kvserver/tenantrate/limiter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import (
"github.com/cockroachdb/cockroach/pkg/settings/cluster"
"github.com/cockroachdb/cockroach/pkg/testutils"
"github.com/cockroachdb/cockroach/pkg/testutils/metrictestutils"
"github.com/cockroachdb/cockroach/pkg/testutils/skip"
"github.com/cockroachdb/cockroach/pkg/util/leaktest"
"github.com/cockroachdb/cockroach/pkg/util/metric"
"github.com/cockroachdb/cockroach/pkg/util/timeutil"
Expand All @@ -38,6 +39,7 @@ import (

func TestCloser(t *testing.T) {
defer leaktest.AfterTest(t)()
skip.WithIssue(t, 86822, "flaky test")

st := cluster.MakeTestingClusterSettings()
start := timeutil.Now()
Expand Down

0 comments on commit 35e3879

Please sign in to comment.