From: Long Wu <long...@corigine.com> CI found the function without checking return value in this place.
Coverity issue: 403101 Fixes: 92073ef961ee ("bond: unit tests") Cc: declan.dohe...@intel.com Cc: sta...@dpdk.org Signed-off-by: Long Wu <long...@corigine.com> Reviewed-by: Chaoyong He <chaoyong...@corigine.com> Reviewed-by: Peng Zhang <peng.zh...@corigine.com> --- app/test/test_link_bonding.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/test/test_link_bonding.c b/app/test/test_link_bonding.c index 4d715c4465..4d54706c21 100644 --- a/app/test/test_link_bonding.c +++ b/app/test/test_link_bonding.c @@ -449,7 +449,8 @@ test_add_already_bonding_member_to_bonding_device(void) uint16_t members[RTE_MAX_ETHPORTS]; char pmd_name[RTE_ETH_NAME_MAX_LEN]; - test_add_member_to_bonding_device(); + TEST_ASSERT_SUCCESS(test_add_member_to_bonding_device(), + "Failed to add member to bonding device"); current_member_count = rte_eth_bond_members_get(test_params->bonding_port_id, members, RTE_MAX_ETHPORTS); -- 2.39.1