From patchwork Thu Jul 1 10:39:09 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rebecca Troy X-Patchwork-Id: 95122 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 33F74A0A0C; Thu, 1 Jul 2021 12:39:17 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1F692412C5; Thu, 1 Jul 2021 12:39:17 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id 336974067C; Thu, 1 Jul 2021 12:39:15 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10031"; a="195800569" X-IronPort-AV: E=Sophos;i="5.83,313,1616482800"; d="scan'208";a="195800569" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Jul 2021 03:39:13 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.83,313,1616482800"; d="scan'208";a="457607569" Received: from silpixa00400904.ir.intel.com ([10.243.23.83]) by fmsmga008.fm.intel.com with ESMTP; 01 Jul 2021 03:39:10 -0700 From: Rebecca Troy To: dev@dpdk.org Cc: ciara.power@intel.com, Rebecca Troy , hemant.agrawal@nxp.com, stable@dpdk.org, Declan Doherty Date: Thu, 1 Jul 2021 10:39:09 +0000 Message-Id: <20210701103909.473697-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 ESN testcase 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 crypto unit test ESN function name by replacing the word 'encryt' with the correct word 'encrypt'. test_authenticated_encryt_with_esn is now called test_authenticated_encrypt_with_esn. Fixes: 699741912d71 ("test/crypto: add case for auth only trailer") Cc: hemant.agrawal@nxp.com Cc: stable@dpdk.org Signed-off-by: Rebecca Troy Acked-by: Hemant Agrawal --- app/test/test_cryptodev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c index 39db52b17a..c5301e49ab 100644 --- a/app/test/test_cryptodev.c +++ b/app/test/test_cryptodev.c @@ -12601,7 +12601,7 @@ test_authenticated_decryption_fail_when_corruption( } static int -test_authenticated_encryt_with_esn( +test_authenticated_encrypt_with_esn( struct crypto_testsuite_params *ts_params, struct crypto_unittest_params *ut_params, const struct test_crypto_vector *reference) @@ -13388,7 +13388,7 @@ auth_decryption_AES128CBC_HMAC_SHA1_fail_tag_corrupt(void) static int auth_encrypt_AES128CBC_HMAC_SHA1_esn_check(void) { - return test_authenticated_encryt_with_esn( + return test_authenticated_encrypt_with_esn( &testsuite_params, &unittest_params, &aes128cbc_hmac_sha1_aad_test_vector);