Bypass the test vectors of unsupported crypto transform for SHA. Signed-off-by: Archana Muniganti <march...@marvell.com> --- examples/fips_validation/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/examples/fips_validation/main.c b/examples/fips_validation/main.c index efd32a8..bde779c 100644 --- a/examples/fips_validation/main.c +++ b/examples/fips_validation/main.c @@ -1022,7 +1022,7 @@ struct fips_test_ops { ret = fips_run_test(); if (ret < 0) { - if (ret == -EPERM) { + if (ret == -EPERM || ret == -ENOTSUP) { fprintf(info.fp_wr, "Bypass\n\n"); return 0; } @@ -1443,7 +1443,7 @@ struct fips_test_ops { ret = fips_run_test(); if (ret < 0) { - if (ret == -EPERM) { + if (ret == -EPERM || ret == -ENOTSUP) { fprintf(info.fp_wr, "Bypass\n\n"); return 0; } -- 1.8.3.1