From patchwork Tue Sep 27 09:20:41 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arkadiusz Kusztal X-Patchwork-Id: 16165 X-Patchwork-Delegate: pablo.de.lara.guarch@intel.com Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 2D8CF2BA4; Tue, 27 Sep 2016 11:21:09 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id D7530968 for ; Tue, 27 Sep 2016 11:21:07 +0200 (CEST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga103.fm.intel.com with ESMTP; 27 Sep 2016 02:20:59 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos; i="5.30,404,1470726000"; d="scan'208"; a="1062826905" Received: from sivswdev03.ir.intel.com (HELO localhost.localdomain) ([10.237.217.157]) by fmsmga002.fm.intel.com with ESMTP; 27 Sep 2016 02:20:43 -0700 From: Arek Kusztal To: dev@dpdk.org Cc: fiona.trahe@intel.com, deepak.k.jain@intel.com, pablo.de.lara.guarch@intel.com, john.griffin@intel.com, Arek Kusztal Date: Tue, 27 Sep 2016 10:20:41 +0100 Message-Id: <1474968041-31261-1-git-send-email-arkadiuszx.kusztal@intel.com> X-Mailer: git-send-email 1.7.0.7 Subject: [dpdk-dev] [PATCH] app/test: remove unnecessary hexdump from test_cryptodev.c X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch removes unnecesssary hexdump calls from GMAC related functions in test_cryptodev.c which hinder compilation when RTE_LOG_DEBUG is specified Signed-off-by: Arek Kusztal Acked-by: Deepak Kumar Jain --- app/test/test_cryptodev.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c index d744b37..23cf016 100644 --- a/app/test/test_cryptodev.c +++ b/app/test/test_cryptodev.c @@ -4288,8 +4288,6 @@ static int create_gmac_session(uint8_t dev_id, ut_params->cipher_xform.cipher.key.data = cipher_key; ut_params->cipher_xform.cipher.key.length = tdata->key.len; - TEST_HEXDUMP(stdout, "key:", key, key_len); - ut_params->auth_xform.type = RTE_CRYPTO_SYM_XFORM_AUTH; ut_params->auth_xform.next = NULL; @@ -4430,8 +4428,6 @@ test_AES_GMAC_authentication_verify(const struct gmac_test_data *tdata) TEST_ASSERT_EQUAL(ut_params->op->status, RTE_CRYPTO_OP_STATUS_SUCCESS, "crypto op processing failed"); - TEST_HEXDUMP(stdout, "auth tag:", auth_tag, tdata->gmac_tag.len); - return 0; }