Skip to content

Commit

Permalink
statusccl: skip flaky TenantStatusAPI tests
Browse files Browse the repository at this point in the history
Informs cockroachdb#92382, cockroachdb#99770, cockroachdb#99559
Epic: none
Release note: None
  • Loading branch information
Zach Lite committed Jun 20, 2023
1 parent 0fef4be commit a2a51bb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/ccl/serverccl/statusccl/tenant_status_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ func TestTenantStatusAPI(t *testing.T) {
tdb.Exec(t, "SET CLUSTER SETTING kv.closed_timestamp.side_transport_interval = '10 ms'")

t.Run("reset_sql_stats", func(t *testing.T) {
skip.UnderDeadlockWithIssue(t, 99559)
testResetSQLStatsRPCForTenant(ctx, t, testHelper)
})

Expand Down Expand Up @@ -112,6 +113,7 @@ func TestTenantStatusAPI(t *testing.T) {
})

t.Run("txn_id_resolution", func(t *testing.T) {
skip.UnderDeadlockWithIssue(t, 99770)
testTxnIDResolutionRPC(ctx, t, testHelper)
})

Expand All @@ -132,6 +134,7 @@ func TestTenantStatusAPI(t *testing.T) {
})

t.Run("tenant_span_stats", func(t *testing.T) {
skip.UnderStressWithIssue(t, 99559)
skip.UnderDeadlockWithIssue(t, 99770)
testTenantSpanStats(ctx, t, testHelper)
})
Expand Down Expand Up @@ -1387,6 +1390,7 @@ func testTenantRangesRPC(_ context.Context, t *testing.T, helper serverccl.Tenan
})

t.Run("test tenant ranges pagination", func(t *testing.T) {
skip.UnderStressWithIssue(t, 92382)
ctx := context.Background()
resp1, err := tenantA.TenantRanges(ctx, &serverpb.TenantRangesRequest{
Limit: 1,
Expand Down

0 comments on commit a2a51bb

Please sign in to comment.