From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 50E52B412 for ; Wed, 8 Jun 2016 17:38:42 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP; 08 Jun 2016 08:38:42 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.26,439,1459839600"; d="scan'208";a="971551212" Received: from sie-lab-212-071.ir.intel.com (HELO silvfanzhan2.ir.intel.com) ([10.237.212.71]) by orsmga001.jf.intel.com with ESMTP; 08 Jun 2016 08:38:41 -0700 From: Fan Zhang To: dev@dpdk.org Cc: declan.doherty@intel.com Date: Wed, 8 Jun 2016 16:38:35 +0100 Message-Id: <1465400319-141636-1-git-send-email-roy.fan.zhang@intel.com> X-Mailer: git-send-email 2.5.5 In-Reply-To: <1464685789-8386-1-git-send-email-roy.fan.zhang@intel.com> References: <1464685789-8386-1-git-send-email-roy.fan.zhang@intel.com> Subject: [dpdk-dev] [PATCH v2 0/4] app/test: rework crypto AES unit test 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: , X-List-Received-Date: Wed, 08 Jun 2016 15:38:42 -0000 This patchset reworks the crypto AES unit test by introducing a new unified test function. This patchset depends on the following patches/patchsets: "qat: fix phys address of content descriptor" (http://dpdk.org/dev/patchwork/patch/13137/) and "Add AES Counter mode support for AES-NI MB PMD" (http://dpdk.org/ml/archives/dev/2016-June/040222.html) v2 *fix session not freed after the test finished problem *remove l2fwd-crypto sample application patch Fan Zhang (4): app/test: categorize crypto AES test vectors into new file app/test: add unified crypto aes test app/test: utilize new unified crypto AES test function app/test: add crypto AES-CBC-128 HMAC-SHA224 and HMAC-SHA384 unit tests app/test/Makefile | 1 + app/test/test_cryptodev.c | 1613 ++---------------------- app/test/test_cryptodev_aes.c | 689 ++++++++++ app/test/test_cryptodev_aes.h | 1124 +++++++++++++++++ app/test/test_cryptodev_aes_ctr_test_vectors.h | 257 ---- 5 files changed, 1936 insertions(+), 1748 deletions(-) create mode 100755 app/test/test_cryptodev_aes.c create mode 100755 app/test/test_cryptodev_aes.h delete mode 100644 app/test/test_cryptodev_aes_ctr_test_vectors.h -- 2.5.5