Fixing return value if session failure occurs due to unsupported feature. Fixes: eec136f3c54f ("aesni_gcm: add driver for AES-GCM crypto operations") Cc: sta...@dpdk.org
Signed-off-by: Tejasree Kondoj <ktejas...@marvell.com> --- app/test/test_cryptodev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c index 0b2ce5ea65..bbc7e8dd18 100644 --- a/app/test/test_cryptodev.c +++ b/app/test/test_cryptodev.c @@ -8778,7 +8778,7 @@ test_authenticated_encryption(const struct aead_test_data *tdata) tdata->key.data, tdata->key.len, tdata->aad.len, tdata->auth_tag.len, tdata->iv.len); - if (retval < 0) + if (retval != TEST_SUCCESS) return retval; if (tdata->aad.len > MBUF_SIZE) { @@ -11482,7 +11482,7 @@ test_authenticated_decryption(const struct aead_test_data *tdata) tdata->key.data, tdata->key.len, tdata->aad.len, tdata->auth_tag.len, tdata->iv.len); - if (retval < 0) + if (retval != TEST_SUCCESS) return retval; /* alloc mbuf and set payload */ -- 2.25.1