Skip to content

Commit 2fcfe80

Browse files
committed
*: remove remaining references of the meta issue
Going forward, 76378 will be the meta issue tracking all remaining work for investigating and enabling test tenants across our tests. This commit removes the last explicit mentions of the issue by replacing with specific ones or enabling test tenants on some packages that happened to just work. Release note: None
1 parent 3bae70a commit 2fcfe80

File tree

17 files changed

+17
-40
lines changed

17 files changed

+17
-40
lines changed

pkg/bench/rttanalysis/bench_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ func TestMain(m *testing.M) {
2525
serverutils.InitTestClusterFactory(testcluster.TestClusterFactory)
2626

2727
defer serverutils.TestingSetDefaultTenantSelectionOverride(
28-
base.TestIsForStuffThatShouldWorkWithSecondaryTenantsButDoesntYet(76378),
28+
base.TestIsForStuffThatShouldWorkWithSecondaryTenantsButDoesntYet(83461),
2929
)()
3030

3131
os.Exit(m.Run())

pkg/bench/tpcc/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ func TestMain(m *testing.M) {
2323
serverutils.InitTestClusterFactory(testcluster.TestClusterFactory)
2424

2525
defer serverutils.TestingSetDefaultTenantSelectionOverride(
26-
base.TestIsForStuffThatShouldWorkWithSecondaryTenantsButDoesntYet(76378),
26+
base.TestIsForStuffThatShouldWorkWithSecondaryTenantsButDoesntYet(83461),
2727
)()
2828

2929
os.Exit(m.Run())

pkg/ccl/changefeedccl/tableset/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func TestMain(m *testing.M) {
2626
serverutils.InitTestClusterFactory(testcluster.TestClusterFactory)
2727

2828
defer serverutils.TestingSetDefaultTenantSelectionOverride(
29-
base.TestIsForStuffThatShouldWorkWithSecondaryTenantsButDoesntYet(76378),
29+
base.TestIsForStuffThatShouldWorkWithSecondaryTenantsButDoesntYet(142799),
3030
)()
3131

3232
os.Exit(m.Run())

pkg/ccl/multitenantccl/tenantcostclient/tenant_side_test.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1200,8 +1200,6 @@ func TestSQLLivenessExemption(t *testing.T) {
12001200
defer leaktest.AfterTest(t)()
12011201
defer log.Scope(t).Close(t)
12021202

1203-
// This test fails when run with the default test tenant. Disabling and
1204-
// tracking with #76378.
12051203
hostServer, hostDB, hostKV := serverutils.StartServer(t,
12061204
base.TestServerArgs{DefaultTestTenant: base.TestControlsTenantsExplicitly})
12071205
defer hostServer.Stopper().Stop(context.Background())

pkg/crosscluster/physical/replication_random_client_test.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,6 @@ func TestStreamIngestionJobWithRandomClient(t *testing.T) {
175175
var revertRangeTargetTime hlc.Timestamp
176176
params := base.TestClusterArgs{
177177
ServerArgs: base.TestServerArgs{
178-
// Test hangs with test tenant. More investigation is required.
179-
// Tracked with #76378.
180178
DefaultTestTenant: base.TestControlsTenantsExplicitly,
181179
Knobs: base.TestingKnobs{
182180
TenantTestingKnobs: &sql.TenantTestingKnobs{

pkg/jobs/jobfrontier/BUILD.bazel

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ go_test(
3131
"//pkg/server",
3232
"//pkg/sql/isql",
3333
"//pkg/testutils/serverutils",
34-
"//pkg/testutils/testcluster",
3534
"//pkg/util/hlc",
3635
"//pkg/util/leaktest",
3736
"//pkg/util/log",

pkg/jobs/jobfrontier/main_test.go

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,18 @@ import (
99
"os"
1010
"testing"
1111

12-
"github.com/cockroachdb/cockroach/pkg/base"
1312
"github.com/cockroachdb/cockroach/pkg/security/securityassets"
1413
"github.com/cockroachdb/cockroach/pkg/security/securitytest"
1514
"github.com/cockroachdb/cockroach/pkg/server"
1615
"github.com/cockroachdb/cockroach/pkg/testutils/serverutils"
17-
"github.com/cockroachdb/cockroach/pkg/testutils/testcluster"
1816
"github.com/cockroachdb/cockroach/pkg/util/randutil"
1917
)
2018

2119
func TestMain(m *testing.M) {
2220
securityassets.SetLoader(securitytest.EmbeddedAssets)
2321
randutil.SeedForTests()
2422
serverutils.InitTestServerFactory(server.TestServerFactory)
25-
serverutils.InitTestClusterFactory(testcluster.TestClusterFactory)
26-
defer serverutils.TestingSetDefaultTenantSelectionOverride(
27-
base.TestIsForStuffThatShouldWorkWithSecondaryTenantsButDoesntYet(76378),
28-
)()
23+
2924
os.Exit(m.Run())
3025
}
3126

pkg/jobs/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ func TestMain(m *testing.M) {
2424
serverutils.InitTestClusterFactory(testcluster.TestClusterFactory)
2525

2626
defer serverutils.TestingSetDefaultTenantSelectionOverride(
27-
base.TestIsForStuffThatShouldWorkWithSecondaryTenantsButDoesntYet(76378),
27+
base.TestIsForStuffThatShouldWorkWithSecondaryTenantsButDoesntYet(156331),
2828
)()
2929

3030
os.Exit(m.Run())

pkg/kv/kvclient/kvcoord/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func TestMain(m *testing.M) {
2626
randutil.SeedForTests()
2727

2828
defer serverutils.TestingSetDefaultTenantSelectionOverride(
29-
base.TestIsForStuffThatShouldWorkWithSecondaryTenantsButDoesntYet(76378),
29+
base.TestIsForStuffThatShouldWorkWithSecondaryTenantsButDoesntYet(156327),
3030
)()
3131

3232
defer serverutils.TestingGlobalDRPCOption(

pkg/kv/kvclient/kvcoord/txncorrectnesstest/BUILD.bazel

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ go_test(
1616
"write_skew_anomaly_test.go",
1717
],
1818
deps = [
19-
"//pkg/base",
2019
"//pkg/kv",
2120
"//pkg/kv/kvclient/kvcoord", # keep
2221
"//pkg/kv/kvserver",

0 commit comments

Comments
 (0)