The return value for a test when the required PMD is not loaded should
be TEST_SKIPPED, rather than TEST_FAILED.

Fixes: 8bfdd8a7f0f1 ("test/crypto: refactor to use sub test suites")

Signed-off-by: Ciara Power <ciara.po...@intel.com>
---
 app/test/test_cryptodev.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c
index 736952a9e6..c68684b80b 100644
--- a/app/test/test_cryptodev.c
+++ b/app/test/test_cryptodev.c
@@ -14504,7 +14504,7 @@ run_cryptodev_testsuite(const char *pmd_name)
 
        if (gbl_driver_id == -1) {
                RTE_LOG(ERR, USER1, "%s PMD must be loaded.\n", pmd_name);
-               return TEST_FAILED;
+               return TEST_SKIPPED;
        }
 
        ts.unit_test_suites = malloc(sizeof(struct unit_test_suite *) *
-- 
2.25.1

Reply via email to