Before running any sessionless test cases,
check if device supports this mode.

Signed-off-by: Pablo de Lara <pablo.de.lara.gua...@intel.com>
---
 app/test/test_cryptodev_blockcipher.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/app/test/test_cryptodev_blockcipher.c 
b/app/test/test_cryptodev_blockcipher.c
index 3fb1274..d730291 100644
--- a/app/test/test_cryptodev_blockcipher.c
+++ b/app/test/test_cryptodev_blockcipher.c
@@ -129,9 +129,16 @@ test_blockcipher_one_case(const struct 
blockcipher_test_case *t,
        uint32_t nb_iterates = 0;
 
        rte_cryptodev_info_get(dev_id, &dev_info);
+       uint64_t feat_flags = dev_info.feature_flags;
 
+       if (t->feature_mask & BLOCKCIPHER_TEST_FEATURE_SESSIONLESS) {
+               if (!(feat_flags & RTE_CRYPTODEV_FF_SYM_SESSIONLESS)) {
+                       printf("Device doesn't support sesionless operations "
+                               "Test Skipped.\n");
+                       return 0;
+               }
+       }
        if (t->feature_mask & BLOCKCIPHER_TEST_FEATURE_SG) {
-               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) {
-- 
2.7.5

Reply via email to