test/crypto: fix typo in AES testcase description

Message ID 20210701092238.471735-1-rebecca.troy@intel.com (mailing list archive)
State Accepted, archived
Delegated to: akhil goyal
Headers
Series test/crypto: fix typo in AES testcase description |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/github-robot success github build: passed
ci/iol-intel-Functional success Functional Testing PASS
ci/iol-testing fail Testing issues
ci/iol-mellanox-Functional fail Functional Testing issues
ci/iol-intel-Performance fail Performance Testing issues
ci/iol-abi-testing success Testing PASS

Commit Message

Rebecca Troy July 1, 2021, 9:22 a.m. UTC
  Fixed typo in the testcase description for AES in the crypto
unit test suite by changing the word 'Scater' to 'Scatter'.

Fixes: c9c9c4ed8746 ("app/test: check scatter-gather for crypto drivers")

Cc: tomaszx.kulasek@intel.com
Cc: stable@dpdk.org
Signed-off-by: Rebecca Troy <rebecca.troy@intel.com>
---
 app/test/test_cryptodev_aes_test_vectors.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Comments

Power, Ciara July 2, 2021, 10:54 a.m. UTC | #1
Hi Rebecca,

>-----Original Message-----
>From: Troy, Rebecca <rebecca.troy@intel.com>
>Sent: Thursday 1 July 2021 10:23
>To: dev@dpdk.org
>Cc: Power, Ciara <ciara.power@intel.com>; Troy, Rebecca
><rebecca.troy@intel.com>; tomaszx.kulasek@intel.com; stable@dpdk.org;
>Doherty, Declan <declan.doherty@intel.com>
>Subject: [PATCH] test/crypto: fix typo in AES testcase description
>
>Fixed typo in the testcase description for AES in the crypto unit test suite by
>changing the word 'Scater' to 'Scatter'.
>
>Fixes: c9c9c4ed8746 ("app/test: check scatter-gather for crypto drivers")
>
>Cc: tomaszx.kulasek@intel.com
>Cc: stable@dpdk.org
>Signed-off-by: Rebecca Troy <rebecca.troy@intel.com>
>---
> app/test/test_cryptodev_aes_test_vectors.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)

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

Thanks!
  
Akhil Goyal July 7, 2021, 2:25 p.m. UTC | #2
> Hi Rebecca,
> 
> >Fixed typo in the testcase description for AES in the crypto unit test suite by
> >changing the word 'Scater' to 'Scatter'.
> >
> >Fixes: c9c9c4ed8746 ("app/test: check scatter-gather for crypto drivers")
> >
> >Cc: tomaszx.kulasek@intel.com
> >Cc: stable@dpdk.org
> >Signed-off-by: Rebecca Troy <rebecca.troy@intel.com>
> >---
> > app/test/test_cryptodev_aes_test_vectors.h | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> 
> Acked-by: Ciara Power <ciara.power@intel.com>
Applied to dpdk-next-crypto
  

Patch

diff --git a/app/test/test_cryptodev_aes_test_vectors.h b/app/test/test_cryptodev_aes_test_vectors.h
index ec53874d9f..e404050701 100644
--- a/app/test/test_cryptodev_aes_test_vectors.h
+++ b/app/test/test_cryptodev_aes_test_vectors.h
@@ -3223,7 +3223,7 @@  static const struct blockcipher_test_case aes_cipheronly_test_cases[] = {
 		.op_mask = BLOCKCIPHER_TEST_OP_ENCRYPT,
 	},
 	{
-		.test_descr = "AES-192-CBC Encryption Scater gather",
+		.test_descr = "AES-192-CBC Encryption Scatter gather",
 		.test_data = &aes_test_data_10,
 		.op_mask = BLOCKCIPHER_TEST_OP_ENCRYPT,
 		.feature_mask = BLOCKCIPHER_TEST_FEATURE_SG |