DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] test/crypto: fix errors for test stats testcase
@ 2023-03-20  9:29 Saoirse O'Donovan
  2023-03-20  9:40 ` Power, Ciara
  0 siblings, 1 reply; 3+ messages in thread
From: Saoirse O'Donovan @ 2023-03-20  9:29 UTC (permalink / raw)
  To: Thomas Monjalon, Akhil Goyal, Fan Zhang
  Cc: dev, Saoirse O'Donovan, stable, declan.doherty

The test stats testcase was printing the same error message for
multiple errors in the test stats testcase. This is now replaced
with descriptive error messages, which match the cause of the failure.

Fixes: 202d375 ("app/test: add cryptodev unit and performance tests")
Cc: stable@dpdk.org
Cc: declan.doherty@intel.com

Signed-off-by: Saoirse O'Donovan <saoirse.odonovan@intel.com>
---
 .mailmap                  |  1 +
 app/test/test_cryptodev.c | 12 ++++++------
 2 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/.mailmap b/.mailmap
index 4018f0fc47..f61972b63d 100644
--- a/.mailmap
+++ b/.mailmap
@@ -1175,6 +1175,7 @@ Sangjin Han <sangjin@eecs.berkeley.edu>
 Sankar Chokkalingam <sankarx.chokkalingam@intel.com>
 Santoshkumar Karanappa Rastapur <santosh.rastapur@broadcom.com>
 Santosh Shukla <santosh.shukla@caviumnetworks.com> <sshukla@mvista.com>
+Saoirse O'Donovan <saoirse.odonovan@intel.com>
 Saori Usami <susami@igel.co.jp>
 Sarath Somasekharan <sarathx.somasekharan@intel.com>
 Sarosh Arif <sarosh.arif@emumba.com>
diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c
index af3d89b9c7..59cf3ec40f 100644
--- a/app/test/test_cryptodev.c
+++ b/app/test/test_cryptodev.c
@@ -12335,11 +12335,11 @@ test_stats(void)
 	TEST_ASSERT((stats.enqueued_count == 1),
 		"rte_cryptodev_stats_get returned unexpected enqueued stat");
 	TEST_ASSERT((stats.dequeued_count == 1),
-		"rte_cryptodev_stats_get returned unexpected enqueued stat");
+		"rte_cryptodev_stats_get returned unexpected dequeued stat");
 	TEST_ASSERT((stats.enqueue_err_count == 0),
-		"rte_cryptodev_stats_get returned unexpected enqueued stat");
+		"rte_cryptodev_stats_get returned unexpected enqueued error count stat");
 	TEST_ASSERT((stats.dequeue_err_count == 0),
-		"rte_cryptodev_stats_get returned unexpected enqueued stat");
+		"rte_cryptodev_stats_get returned unexpected dequeued error count stat");
 
 	/* invalid device but should ignore and not reset device stats*/
 	rte_cryptodev_stats_reset(ts_params->valid_devs[0] + 300);
@@ -12347,7 +12347,7 @@ test_stats(void)
 			&stats),
 		"rte_cryptodev_stats_get failed");
 	TEST_ASSERT((stats.enqueued_count == 1),
-		"rte_cryptodev_stats_get returned unexpected enqueued stat");
+		"rte_cryptodev_stats_get returned unexpected enqueued stat after invalid reset");
 
 	/* check that a valid reset clears stats */
 	rte_cryptodev_stats_reset(ts_params->valid_devs[0]);
@@ -12355,9 +12355,9 @@ test_stats(void)
 			&stats),
 					  "rte_cryptodev_stats_get failed");
 	TEST_ASSERT((stats.enqueued_count == 0),
-		"rte_cryptodev_stats_get returned unexpected enqueued stat");
+		"rte_cryptodev_stats_get returned unexpected enqueued stat after valid reset");
 	TEST_ASSERT((stats.dequeued_count == 0),
-		"rte_cryptodev_stats_get returned unexpected enqueued stat");
+		"rte_cryptodev_stats_get returned unexpected dequeued stat after valid reset");
 
 	return TEST_SUCCESS;
 }
-- 
2.25.1


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

* RE: [PATCH] test/crypto: fix errors for test stats testcase
  2023-03-20  9:29 [PATCH] test/crypto: fix errors for test stats testcase Saoirse O'Donovan
@ 2023-03-20  9:40 ` Power, Ciara
  2023-03-28  6:37   ` Akhil Goyal
  0 siblings, 1 reply; 3+ messages in thread
From: Power, Ciara @ 2023-03-20  9:40 UTC (permalink / raw)
  To: O'Donovan, Saoirse, Thomas Monjalon, Akhil Goyal, Fan Zhang
  Cc: dev, O'Donovan, Saoirse, stable, Doherty, Declan

Hi Saoirse,

> -----Original Message-----
> From: Saoirse O'Donovan <saoirse.odonovan@intel.com>
> Sent: Monday 20 March 2023 09:30
> To: Thomas Monjalon <thomas@monjalon.net>; Akhil Goyal
> <gakhil@marvell.com>; Fan Zhang <fanzhang.oss@gmail.com>
> Cc: dev@dpdk.org; O'Donovan, Saoirse <saoirse.odonovan@intel.com>;
> stable@dpdk.org; Doherty, Declan <declan.doherty@intel.com>
> Subject: [PATCH] test/crypto: fix errors for test stats testcase
> 
> The test stats testcase was printing the same error message for multiple errors
> in the test stats testcase. This is now replaced with descriptive error messages,
> which match the cause of the failure.
> 
> Fixes: 202d375 ("app/test: add cryptodev unit and performance tests")
> Cc: stable@dpdk.org
> Cc: declan.doherty@intel.com
> 
> Signed-off-by: Saoirse O'Donovan <saoirse.odonovan@intel.com>
> ---
>  .mailmap                  |  1 +
>  app/test/test_cryptodev.c | 12 ++++++------
>  2 files changed, 7 insertions(+), 6 deletions(-)

Acked-by: Ciara Power <ciara.power@intel.com>

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

* RE: [PATCH] test/crypto: fix errors for test stats testcase
  2023-03-20  9:40 ` Power, Ciara
@ 2023-03-28  6:37   ` Akhil Goyal
  0 siblings, 0 replies; 3+ messages in thread
From: Akhil Goyal @ 2023-03-28  6:37 UTC (permalink / raw)
  To: Power, Ciara, O'Donovan, Saoirse, Thomas Monjalon, Fan Zhang
  Cc: dev, O'Donovan, Saoirse, stable, Doherty, Declan

> Hi Saoirse,
> 
> > Subject: [PATCH] test/crypto: fix errors for test stats testcase
> >
> > The test stats testcase was printing the same error message for multiple errors
> > in the test stats testcase. This is now replaced with descriptive error messages,
> > which match the cause of the failure.
> >
> > Fixes: 202d375 ("app/test: add cryptodev unit and performance tests")
> > Cc: stable@dpdk.org
> > Cc: declan.doherty@intel.com
> >
> > Signed-off-by: Saoirse O'Donovan <saoirse.odonovan@intel.com>
> > ---
> >  .mailmap                  |  1 +
> >  app/test/test_cryptodev.c | 12 ++++++------
> >  2 files changed, 7 insertions(+), 6 deletions(-)
> 
> Acked-by: Ciara Power <ciara.power@intel.com>

Applied to dpdk-next-crypto

Changed title to "test/crypto: fix stats case error messages"

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

end of thread, other threads:[~2023-03-28  6:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-20  9:29 [PATCH] test/crypto: fix errors for test stats testcase Saoirse O'Donovan
2023-03-20  9:40 ` Power, Ciara
2023-03-28  6:37   ` 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).