Skip to content

Commit

Permalink
Merge #82937
Browse files Browse the repository at this point in the history
82937: roachtest: assign some tests to the multi-tenant team r=renatolabs a=knz

Release note: None

Co-authored-by: Raphael 'kena' Poss <[email protected]>
  • Loading branch information
craig[bot] and knz committed Jun 16, 2022
2 parents 2b082dd + 1009de3 commit 1634866
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
1 change: 1 addition & 0 deletions pkg/cmd/roachtest/registry/owners.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ const (
OwnerStorage Owner = `storage`
OwnerTestEng Owner = `test-eng`
OwnerDevInf Owner = `dev-inf`
OwnerMultiTenant Owner = `multi-tenant`
)
12 changes: 7 additions & 5 deletions pkg/cmd/roachtest/tests/acceptance.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,6 @@ func registerAcceptance(r registry.Registry) {
encryptionSupport: registry.EncryptionAlwaysDisabled,
},
{name: "gossip/locality-address", fn: runCheckLocalityIPAddress},
{
name: "multitenant",
skip: "https://github.com/cockroachdb/cockroach/issues/81506",
fn: runAcceptanceMultitenant,
},
{name: "reset-quorum", fn: runResetQuorum, numNodes: 8},
{
name: "many-splits", fn: runManySplits,
Expand All @@ -65,6 +60,13 @@ func registerAcceptance(r registry.Registry) {
timeout: 30 * time.Minute,
},
},
registry.OwnerMultiTenant: {
{
name: "multitenant",
skip: "https://github.com/cockroachdb/cockroach/issues/81506",
fn: runAcceptanceMultitenant,
},
},
registry.OwnerServer: {
{name: "build-info", fn: RunBuildInfo},
{name: "build-analyze", fn: RunBuildAnalyze},
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/roachtest/tests/multitenant_upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func registerMultiTenantUpgrade(r registry.Registry) {
r.Add(registry.TestSpec{
Name: "multitenant-upgrade",
Cluster: r.MakeClusterSpec(2),
Owner: registry.OwnerKV,
Owner: registry.OwnerMultiTenant,
NonReleaseBlocker: false,
Run: func(ctx context.Context, t test.Test, c cluster.Cluster) {
runMultiTenantUpgrade(ctx, t, c, *t.BuildVersion())
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/roachtest/tests/smoketest_secure.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func registerSecure(r registry.Registry) {
}
r.Add(registry.TestSpec{
Name: "smoketest/secure/multitenant",
Owner: registry.OwnerServer,
Owner: registry.OwnerMultiTenant,
Cluster: r.MakeClusterSpec(2),
Run: multitenantSmokeTest,
})
Expand Down

0 comments on commit 1634866

Please sign in to comment.