Skip to content

Commit

Permalink
Add verification on kernel param rcutree.kthread
Browse files Browse the repository at this point in the history
remove redundant part
  • Loading branch information
shai oren committed Sep 12, 2022
1 parent 608884c commit dffe1b7
Showing 1 changed file with 8 additions and 0 deletions.
Expand Up @@ -1041,6 +1041,14 @@ var _ = Describe("[rfe_id:27368][performance]", func() {
})
})
})

It("[test_id:54083] Should have kernel param rcutree.kthread", func() {
for _, node := range workerRTNodes {
cmdline, err := nodes.ExecCommandOnMachineConfigDaemon(&node, []string{"cat", "/proc/cmdline"})
Expect(err).ToNot(HaveOccurred(), "Failed to read /proc/cmdline")
Expect(string(cmdline)).To(ContainSubstring("rcutree.kthread_prio=11"), "Boot Parameters should contain rctree.kthread_prio=11")
}
})
})

func verifyV1alpha1Conversion(v1alpha1Profile *performancev1alpha1.PerformanceProfile, v1Profile *performancev1.PerformanceProfile) error {
Expand Down

0 comments on commit dffe1b7

Please sign in to comment.