Skip to content

Commit

Permalink
backupccl: skip TestBackupRestoreAppend under race
Browse files Browse the repository at this point in the history
This is a large test that starts 3 nodes, loads a bank workload and
then issues a number of SQL statements. Under race we've seen this
hang but we don't currently belive that this represent a problem with
BACKUP/RESTORE.

Fixes #108800

Epic: none

Release note: None
  • Loading branch information
stevendanna committed Aug 18, 2023
1 parent c9e5d6e commit 66a402d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/ccl/backupccl/backup_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,8 @@ func TestBackupRestoreAppend(t *testing.T) {
defer leaktest.AfterTest(t)()
defer log.Scope(t).Close(t)

skip.UnderStressRace(t, "test is too large to run under stress race")
skip.UnderStress(t, "test is too large to run under stress")
skip.UnderRace(t, "test is too large to run under race")

const numAccounts = 1000
ctx := context.Background()
Expand Down

0 comments on commit 66a402d

Please sign in to comment.