test: fix assignment operation
This should be an comparison operation rather than an assignment
operation.
Fixes: 5e41ab250d
("app/test: unit tests for bonding mode 4")
Cc: stable@dpdk.org
Signed-off-by: Zhiyong Yang <zhiyong.yang@intel.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
This commit is contained in:
parent
f9b3923b5b
commit
e19e163d27
@ -661,7 +661,7 @@ bond_handshake(void)
|
||||
TEST_ASSERT_EQUAL(all_slaves_done, 1, "Bond handshake failed\n");
|
||||
|
||||
/* If flags doesn't match - report failure */
|
||||
return all_slaves_done = 1 ? TEST_SUCCESS : TEST_FAILED;
|
||||
return all_slaves_done == 1 ? TEST_SUCCESS : TEST_FAILED;
|
||||
}
|
||||
|
||||
#define TEST_LACP_SLAVE_COUT RTE_DIM(test_params.slave_ports)
|
||||
|
Loading…
Reference in New Issue
Block a user