aboutsummaryrefslogtreecommitdiffstats
path: root/test/test/test_cryptodev_asym.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/test/test_cryptodev_asym.c')
-rw-r--r--test/test/test_cryptodev_asym.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/test/test_cryptodev_asym.c b/test/test/test_cryptodev_asym.c
index 2fdfc1df..a899f997 100644
--- a/test/test/test_cryptodev_asym.c
+++ b/test/test/test_cryptodev_asym.c
@@ -153,10 +153,13 @@ test_rsa_sign_verify(void)
goto error_exit;
}
status = TEST_SUCCESS;
- int ret = 0;
- ret = rsa_verify(&rsaplaintext, result_op);
- if (ret)
+ if (result_op->status != RTE_CRYPTO_OP_STATUS_SUCCESS) {
+ RTE_LOG(ERR, USER1,
+ "line %u FAILED: %s",
+ __LINE__, "Failed to process asym crypto op");
status = TEST_FAILED;
+ goto error_exit;
+ }
error_exit: