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 B7E4BBE12 for ; Wed, 15 Jun 2016 13:06:21 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga101.jf.intel.com with ESMTP; 15 Jun 2016 04:06:20 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.26,475,1459839600"; d="scan'208";a="998065432" Received: from sie-lab-212-071.ir.intel.com (HELO silvfanzhan2.ir.intel.com) ([10.237.212.71]) by orsmga002.jf.intel.com with ESMTP; 15 Jun 2016 04:02:52 -0700 From: Fan Zhang To: dev@dpdk.org Cc: declan.doherty@intel.com Date: Wed, 15 Jun 2016 12:02:48 +0100 Message-Id: <1465988570-92356-1-git-send-email-roy.fan.zhang@intel.com> X-Mailer: git-send-email 2.5.5 In-Reply-To: <1465898239-65444-1-git-send-email-roy.fan.zhang@intel.com> References: <1465898239-65444-1-git-send-email-roy.fan.zhang@intel.com> Subject: [dpdk-dev] [PATCH v6 0/2] 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, 15 Jun 2016 11:06:22 -0000 This patchset reworks the crypto AES unit test by introducing a new unified test function. v2 *fix session not freed after the test finished problem *remove l2fwd-crypto sample application patch v3 *fix clang compile error v4 *fix the misplaced commit in the v3 patchset v5 *squash several patches into one patch v6 *remove unused macro Fan Zhang (2): app/test: rework the crypto AES unit test 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 | 685 ++++++++++ app/test/test_cryptodev_aes.h | 1124 +++++++++++++++++ app/test/test_cryptodev_aes_ctr_test_vectors.h | 257 ---- 5 files changed, 1932 insertions(+), 1748 deletions(-) create mode 100644 app/test/test_cryptodev_aes.c create mode 100644 app/test/test_cryptodev_aes.h delete mode 100644 app/test/test_cryptodev_aes_ctr_test_vectors.h -- 2.5.5