@@ -78,7 +78,7 @@ var _ = Describe("[rfe_id:77446] LLC-aware cpu pinning", Label(string(label.Open
78
78
79
79
perfProfile , err = profiles .GetByNodeLabels (testutils .NodeSelectorLabels )
80
80
Expect (err ).ToNot (HaveOccurred ())
81
- // initialProfile = perfProfile.DeepCopy()
81
+ initialProfile = perfProfile .DeepCopy ()
82
82
83
83
getter , err = cgroup .BuildGetter (ctx , testclient .DataPlaneClient , testclient .K8sClient )
84
84
Expect (err ).ToNot (HaveOccurred ())
@@ -241,13 +241,12 @@ var _ = Describe("[rfe_id:77446] LLC-aware cpu pinning", Label(string(label.Open
241
241
Skip ("This test requires systems where L3 cache is shared amount subset of cpus" )
242
242
}
243
243
}
244
- testlog .Info ("Modifying profile with reserved cpus %s and isolated cpus %s" , reserved .String (), isolated .String ())
245
244
// Modify the profile such that we give 1 whole ccx to reserved cpus
246
245
By ("Modifying the profile" )
247
246
isolated = onlineCPUSet .Difference (reserved )
248
247
reservedSet := performancev2 .CPUSet (reserved .String ())
249
248
isolatedSet := performancev2 .CPUSet (isolated .String ())
250
- testlog .Info ("Modifying profile with reserved cpus %s and isolated cpus %s" , reserved .String (), isolated .String ())
249
+ testlog .Infof ("Modifying profile with reserved cpus %s and isolated cpus %s" , reserved .String (), isolated .String ())
251
250
profile .Spec .CPU = & performancev2.CPU {
252
251
Reserved : & reservedSet ,
253
252
Isolated : & isolatedSet ,
@@ -272,7 +271,7 @@ var _ = Describe("[rfe_id:77446] LLC-aware cpu pinning", Label(string(label.Open
272
271
})
273
272
})
274
273
275
- It ("[test_id:77725] Align Guaranteed pod requesting L3Cache group size cpus" , Label ( "llc1" ), func (ctx context.Context ) {
274
+ It ("[test_id:77725] Align Guaranteed pod requesting L3Cache group size cpus" , func (ctx context.Context ) {
276
275
podLabel := make (map [string ]string )
277
276
targetNode := workerRTNodes [0 ]
278
277
cpusetCfg := & controller.CpuSet {}
0 commit comments