From ccef02b66e1ecf9c895e436381538112bc4b7367 Mon Sep 17 00:00:00 2001 From: "Niranjan M.R" Date: Tue, 12 Aug 2025 17:37:44 +0530 Subject: [PATCH] E2E: skip stalld test case checking sched_fifo Skip test case checking if stalld is setting sched_fifo scheduling algorithm due to known issue https://issues.redhat.com/browse/RHEL-108827 Signed-off-by: Niranjan M.R --- .../performanceprofile/functests/1_performance/performance.go | 1 + 1 file changed, 1 insertion(+) diff --git a/test/e2e/performanceprofile/functests/1_performance/performance.go b/test/e2e/performanceprofile/functests/1_performance/performance.go index 4806868aa8..88e8f4335a 100644 --- a/test/e2e/performanceprofile/functests/1_performance/performance.go +++ b/test/e2e/performanceprofile/functests/1_performance/performance.go @@ -211,6 +211,7 @@ var _ = Describe("[rfe_id:27368][performance]", Ordered, func() { } }) It("[test_id:42400][crit:medium][vendor:cnf-qe@redhat.com][level:acceptance] stalld daemon is running as sched_fifo", func() { + testutils.KnownIssueJira("RHEL-108827") for _, node := range workerRTNodes { out, err := nodes.ExecCommand(context.TODO(), &node, []string{"pidof", "stalld"}) Expect(err).ToNot(HaveOccurred())