File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
conformance_tests/sysman/test_sysman_vf_management/src Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff 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+ /*
403404TEST_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
You can’t perform that action at this time.
0 commit comments