From 66a402d5c06cc140c264f1ab53f1fd277304e615 Mon Sep 17 00:00:00 2001 From: Steven Danna Date: Thu, 17 Aug 2023 17:36:29 +0100 Subject: [PATCH] backupccl: skip TestBackupRestoreAppend under race 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 --- pkg/ccl/backupccl/backup_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/ccl/backupccl/backup_test.go b/pkg/ccl/backupccl/backup_test.go index dbc0681e8e6e..9ef242369945 100644 --- a/pkg/ccl/backupccl/backup_test.go +++ b/pkg/ccl/backupccl/backup_test.go @@ -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()