From patchwork Thu Aug 25 13:23:39 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Deepak Kumar JAIN X-Patchwork-Id: 15323 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 6CAD858C5; Thu, 25 Aug 2016 15:23:53 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id C7C7A568A for ; Thu, 25 Aug 2016 15:23:48 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga105.fm.intel.com with ESMTP; 25 Aug 2016 06:23:48 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos; i="5.28,575,1464678000"; d="scan'208"; a="1031145756" Received: from sie-lab-214-241.ir.intel.com (HELO silpixa00382162.ir.intel.com) ([10.237.214.241]) by fmsmga001.fm.intel.com with ESMTP; 25 Aug 2016 06:23:47 -0700 From: Deepak Kumar Jain To: pablo.de.lara.guarch@intel.com, fiona.trahe@intel.com, john.griffin@intel.com Cc: dev@dpdk.org, Deepak Kumar JAIN Date: Thu, 25 Aug 2016 14:23:39 +0100 Message-Id: <1472131419-89617-5-git-send-email-deepak.k.jain@intel.com> X-Mailer: git-send-email 2.5.5 In-Reply-To: <1472131419-89617-1-git-send-email-deepak.k.jain@intel.com> References: <1471988151-186105-1-git-send-email-deepak.k.jain@intel.com> <1472131419-89617-1-git-send-email-deepak.k.jain@intel.com> Subject: [dpdk-dev] [PATCH v2 4/4] app/test: add kasumi f8 test into QAT testsuite 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" From: Deepak Kumar JAIN Signed-off-by: Deepak Kumar Jain --- app/test/test_cryptodev.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c index a0dae4f..fa16d32 100644 --- a/app/test/test_cryptodev.c +++ b/app/test/test_cryptodev.c @@ -4156,6 +4156,10 @@ static struct unit_test_suite cryptodev_qat_testsuite = { TEST_CASE_ST(ut_setup, ut_teardown, test_kasumi_hash_generate_test_case_6), + /** KASUMI encrypt only (F8) */ + TEST_CASE_ST(ut_setup, ut_teardown, + test_kasumi_encryption_test_case_1), + TEST_CASES_END() /**< NULL terminate unit test array */ } };