test/crypto: fix flag check
An incorrect flag check was done, using "&&" instead of "&".
Fixes: 2717246ecd
("cryptodev: replace mbuf scatter gather flag")
Cc: stable@dpdk.org
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
Acked-by: Fiona Trahe <fiona.trahe@intel.com>
This commit is contained in:
parent
9536622b86
commit
042bb56544
@ -93,7 +93,7 @@ test_blockcipher_one_case(const struct blockcipher_test_case *t,
|
||||
uint64_t feat_flags = dev_info.feature_flags;
|
||||
uint64_t oop_flag = RTE_CRYPTODEV_FF_OOP_SGL_IN_LB_OUT;
|
||||
|
||||
if (t->feature_mask && BLOCKCIPHER_TEST_FEATURE_OOP) {
|
||||
if (t->feature_mask & BLOCKCIPHER_TEST_FEATURE_OOP) {
|
||||
if (!(feat_flags & oop_flag)) {
|
||||
printf("Device doesn't support out-of-place "
|
||||
"scatter-gather in input mbuf. "
|
||||
|
Loading…
Reference in New Issue
Block a user