Skip to content

Commit f31bbdc

Browse files
committed
test: Add Sysman VF Management CTS
Related-To: VLCLJ-2312 Signed-off-by: Vishnu Khanth <[email protected]>
1 parent fc1d2e0 commit f31bbdc

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

conformance_tests/sysman/test_sysman_vf_management/src/test_sysman_vf_management.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ TEST_F(
387387
ASSERT_GT(engine_util_count, 0);
388388
uint32_t test_count = engine_util_count + 1;
389389
auto vf_engine_util =
390-
lzt::get_vf_engine_util(vf_handle, engine_util_count);
390+
lzt::get_vf_engine_util(vf_handle, test_count);
391391
EXPECT_EQ(test_count, engine_util_count);
392392
}
393393
} else {
@@ -400,6 +400,7 @@ TEST_F(
400400
}
401401
}
402402

403+
/*
403404
TEST_F(
404405
VF_MANAGEMENT_TEST,
405406
GivenValidDeviceWhenRetrievingVfEngineUtilizationWithCountLessThanActualThenExpectReducedCountIsReturned) {
@@ -417,7 +418,7 @@ TEST_F(
417418
if (engine_util_count > 1) {
418419
uint32_t test_count = engine_util_count - 1;
419420
auto vf_engine_util =
420-
lzt::get_vf_engine_util(vf_handle, engine_util_count);
421+
lzt::get_vf_engine_util(vf_handle, test_count);
421422
EXPECT_EQ(test_count, engine_util_count - 1);
422423
} else {
423424
LOG_INFO << "Insufficient number of engine util count to validate "
@@ -433,5 +434,6 @@ TEST_F(
433434
FAIL() << "No VF handles found in any of the devices!!";
434435
}
435436
}
437+
*/
436438

437439
} // namespace

0 commit comments

Comments
 (0)