Skip to content

Commit 7d6f7aa

Browse files
committed
New Scheduling Fail Fast test case Debugging.
Signed-off-by: dmatch01 <darroyo@us.ibm.com>
1 parent 46461a1 commit 7d6f7aa

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/e2e/queue.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -361,23 +361,23 @@ var _ = Describe("AppWrapper E2E Test", func() {
361361
Expect(err).NotTo(HaveOccurred())
362362
})
363363

364-
It("MCAD Scheduling Failure Preemption Test", func() {
365-
fmt.Fprintf(os.Stdout, "[e2e] MCAD Bad Custom Pod Resources vs. Deployment Pod Resource Not Queuing Test - Started.\n")
364+
It("MCAD Scheduling Fail Fast Preemption Test", func() {
365+
fmt.Fprintf(os.Stdout, "[e2e] MCAD Scheduling Fail Fast Preemption Test - Started.\n")
366366
context := initTestContext()
367367
var appwrappers []*arbv1.AppWrapper
368368
appwrappersPtr := &appwrappers
369369
defer cleanupTestObjectsPtr(context, appwrappersPtr)
370370

371371
// This should fill up the worker node and most of the master node
372-
aw := createDeploymentAWwith550CPU(context, "aw-deployment-2-550cpu")
372+
aw := createDeploymentAWwith550CPU(context, "aw-ff-deployment-2-550cpu")
373373
appwrappers = append(appwrappers, aw)
374374

375375
err := waitAWPodsReady(context, aw)
376376
Expect(err).NotTo(HaveOccurred())
377377

378378
// This should not fit on any node but should dispatch because there is enough aggregated resources.
379379
aw2 := createGenericDeploymentCustomPodResourcesWithCPUAW(
380-
context, "aw-deployment-1-700-cpu", "700m", "700m", 1)
380+
context, "aw-ff-deployment-1-700-cpu", "700m", "700m", 1)
381381

382382
appwrappers = append(appwrappers, aw2)
383383

@@ -390,7 +390,7 @@ var _ = Describe("AppWrapper E2E Test", func() {
390390
// This should fit on cluster after AW aw-deployment-1-700-cpu above is automatically preempted on
391391
// scheduling failure
392392
aw3 := createGenericDeploymentCustomPodResourcesWithCPUAW(
393-
context, "aw-deployment-2-425-cpu", "425m", "425m", 2)
393+
context, "aw-ff-deployment-2-425-cpu", "425m", "425m", 2)
394394

395395
appwrappers = append(appwrappers, aw3)
396396

0 commit comments

Comments
 (0)