From patchwork Fri Jul 24 11:00:05 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nagadheeraj Rottela X-Patchwork-Id: 74753 X-Patchwork-Delegate: gakhil@marvell.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 7AC36A0518; Fri, 24 Jul 2020 13:00:27 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id E62EF1C029; Fri, 24 Jul 2020 13:00:20 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by dpdk.org (Postfix) with ESMTP id 218DF1BFE5 for ; Fri, 24 Jul 2020 13:00:18 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id 06OAsuH8006897; Fri, 24 Jul 2020 04:00:18 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=pfpt0818; bh=M74FLzMDctITYlv6BTv0KtXrpCHgSxqXkauedxrhl+8=; b=NMFyO1kvGoxSmmHDGDezEXofXqTST9usb0mnK8PXGZ4w5lk6NKBiTDvjRFlGiWcdJgAA mXNidOTDZBD+uKdvtYvafKuXZiXj2Nk8C2cVQJ9QFpmoAYzIF5mBHYqwDCfMXIk8TEIk Sen7llX/AX4lelzUPJFzq5D1hiD/zROjOOpP7W7YO/xUlBCLCIqJmWs2EViBHqX3Dr8Y 80Hd8YEVH79itW3r0vVER0NNB154ijiy/tpUk7H/X2u14zHTlMRh4cgnCgK8h349d+vv CX5b6Rmss+g7YYXhkZUbNsJWQeOppz9cSxWPxDNTffS/Ku2VThMVrEbv6VQdn38CzY66 RQ== Received: from sc-exch01.marvell.com ([199.233.58.181]) by mx0a-0016f401.pphosted.com with ESMTP id 32bxep2bs3-2 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Fri, 24 Jul 2020 04:00:18 -0700 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by SC-EXCH01.marvell.com (10.93.176.81) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Fri, 24 Jul 2020 04:00:17 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Fri, 24 Jul 2020 04:00:17 -0700 Received: from hyd1669.caveonetworks.com (10.69.176.80) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server id 15.0.1497.2 via Frontend Transport; Fri, 24 Jul 2020 04:00:15 -0700 From: Nagadheeraj Rottela To: CC: , , Nagadheeraj Rottela Date: Fri, 24 Jul 2020 16:30:05 +0530 Message-ID: <20200724110007.41303-2-rnagadheeraj@marvell.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20200724110007.41303-1-rnagadheeraj@marvell.com> References: <20200724110007.41303-1-rnagadheeraj@marvell.com> MIME-Version: 1.0 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.235, 18.0.687 definitions=2020-07-24_03:2020-07-24, 2020-07-24 signatures=0 Subject: [dpdk-dev] [PATCH 1/3] test/crypto: replace NITROX PMD specific test suite X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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" Replace NITROX PMD specific tests with generic test suite. Signed-off-by: Nagadheeraj Rottela --- app/test/test_cryptodev.c | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c index 70bf6fe2c..162134a5c 100644 --- a/app/test/test_cryptodev.c +++ b/app/test/test_cryptodev.c @@ -12665,22 +12665,6 @@ static struct unit_test_suite cryptodev_ccp_testsuite = { } }; -static struct unit_test_suite cryptodev_nitrox_testsuite = { - .suite_name = "Crypto NITROX Unit Test Suite", - .setup = testsuite_setup, - .teardown = testsuite_teardown, - .unit_test_cases = { - TEST_CASE_ST(ut_setup, ut_teardown, - test_device_configure_invalid_dev_id), - TEST_CASE_ST(ut_setup, ut_teardown, - test_device_configure_invalid_queue_pair_ids), - TEST_CASE_ST(ut_setup, ut_teardown, test_AES_chain_all), - TEST_CASE_ST(ut_setup, ut_teardown, test_3DES_chain_all), - - TEST_CASES_END() /**< NULL terminate unit test array */ - } -}; - static int test_cryptodev_qat(void /*argv __rte_unused, int argc __rte_unused*/) { @@ -13038,7 +13022,7 @@ test_cryptodev_nitrox(void) return TEST_FAILED; } - return unit_test_suite_runner(&cryptodev_nitrox_testsuite); + return unit_test_suite_runner(&cryptodev_testsuite); } REGISTER_TEST_COMMAND(cryptodev_qat_autotest, test_cryptodev_qat);