From ed0162d7f9af5e1e9ba6c4b040f1a3d22ab4218a Mon Sep 17 00:00:00 2001 From: Chandan Maurya Date: Tue, 28 Jul 2026 17:34:51 +0530 Subject: [PATCH] OCPBUGS-100045: Add openshift/disruptive-longrunning testsuite in release-4.19 Co-authored-by: Cursor --- pkg/testsuites/standard_suites.go | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/pkg/testsuites/standard_suites.go b/pkg/testsuites/standard_suites.go index fd004f7e11a6..c2e80e11242e 100644 --- a/pkg/testsuites/standard_suites.go +++ b/pkg/testsuites/standard_suites.go @@ -450,4 +450,21 @@ var staticSuites = []ginkgo.TestSuite{ TestTimeout: 120 * time.Minute, ClusterStabilityDuringTest: ginkgo.Disruptive, }, + { + Name: "openshift/disruptive-longrunning", + Description: templates.LongDesc(` + Long-running disruptive test suite. Tests in this suite are disruptive (cause node reboots, + configuration changes, or cluster-wide disruptions) and take significant time to complete. + Multiple teams can use this suite for their long-running disruptive tests. + `), + Matches: func(name string) bool { + if isDisabled(name) { + return false + } + return strings.Contains(name, "[Suite:openshift/disruptive-longrunning") + }, + Parallelism: 1, + TestTimeout: 40 * time.Minute, + ClusterStabilityDuringTest: ginkgo.Disruptive, + }, }