DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] examples/fips_validation: bypass the unsupported test vectors
@ 2020-09-16 10:41 Archana Muniganti
  2020-10-09 18:21 ` Akhil Goyal
  0 siblings, 1 reply; 2+ messages in thread
From: Archana Muniganti @ 2020-09-16 10:41 UTC (permalink / raw)
  To: marko.kovacevic, roy.fan.zhang, akhil.goyal
  Cc: Archana Muniganti, anoobj, dev, stable

Bypass the test vectors of unsupported crypto transform
for SHA.

Signed-off-by: Archana Muniganti <marchana@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


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [dpdk-dev] [PATCH] examples/fips_validation: bypass the unsupported test vectors
  2020-09-16 10:41 [dpdk-dev] [PATCH] examples/fips_validation: bypass the unsupported test vectors Archana Muniganti
@ 2020-10-09 18:21 ` Akhil Goyal
  0 siblings, 0 replies; 2+ messages in thread
From: Akhil Goyal @ 2020-10-09 18:21 UTC (permalink / raw)
  To: Archana Muniganti, marko.kovacevic, roy.fan.zhang; +Cc: anoobj, dev, stable



> Bypass the test vectors of unsupported crypto transform
> for SHA.
> 
> Signed-off-by: Archana Muniganti <marchana@marvell.com>
> ---
Applied to dpdk-next-crypto

Thanks.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-10-09 18:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-16 10:41 [dpdk-dev] [PATCH] examples/fips_validation: bypass the unsupported test vectors Archana Muniganti
2020-10-09 18:21 ` Akhil Goyal

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).