From patchwork Thu Jul 1 09:22:38 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rebecca Troy X-Patchwork-Id: 95109 X-Patchwork-Delegate: gakhil@marvell.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4262CA0A0C; Thu, 1 Jul 2021 11:23:01 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 268C9412BC; Thu, 1 Jul 2021 11:23:01 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id 2A0D04067C; Thu, 1 Jul 2021 11:22:58 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10031"; a="208541743" X-IronPort-AV: E=Sophos;i="5.83,313,1616482800"; d="scan'208";a="208541743" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Jul 2021 02:22:57 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.83,313,1616482800"; d="scan'208";a="489860128" Received: from silpixa00400904.ir.intel.com ([10.243.23.83]) by orsmga001.jf.intel.com with ESMTP; 01 Jul 2021 02:22:56 -0700 From: Rebecca Troy To: dev@dpdk.org Cc: ciara.power@intel.com, Rebecca Troy , tomaszx.kulasek@intel.com, stable@dpdk.org, Declan Doherty Date: Thu, 1 Jul 2021 09:22:38 +0000 Message-Id: <20210701092238.471735-1-rebecca.troy@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH] test/crypto: fix typo in AES testcase description X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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 Acked-by: Ciara Power --- app/test/test_cryptodev_aes_test_vectors.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 |