diff --git a/pkg/cmd/roachtest/tests/hibernate.go b/pkg/cmd/roachtest/tests/hibernate.go index c5b4302d3e0e..93caf4128efc 100644 --- a/pkg/cmd/roachtest/tests/hibernate.go +++ b/pkg/cmd/roachtest/tests/hibernate.go @@ -14,6 +14,7 @@ import ( "context" "fmt" "regexp" + "time" "github.com/cockroachdb/cockroach/pkg/cmd/roachtest/cluster" "github.com/cockroachdb/cockroach/pkg/cmd/roachtest/option" @@ -252,6 +253,7 @@ func registerHibernate(r registry.Registry, opt hibernateOptions) { CompatibleClouds: registry.AllExceptAWS, Suites: registry.Suites(registry.Nightly, registry.ORM), Tags: registry.Tags(`default`, `orm`), + Timeout: 4 * time.Hour, Run: func(ctx context.Context, t test.Test, c cluster.Cluster) { runHibernate(ctx, t, c) },