From patchwork Fri Sep 8 11:58:21 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aakash Sasidharan X-Patchwork-Id: 131304 X-Patchwork-Delegate: gakhil@marvell.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 90C5042547; Fri, 8 Sep 2023 13:58:38 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6F213402E4; Fri, 8 Sep 2023 13:58:38 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id 0D46C402E2 for ; Fri, 8 Sep 2023 13:58:36 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.17.1.19/8.17.1.19) with ESMTP id 3887kIut017138 for ; Fri, 8 Sep 2023 04:58:36 -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=pfpt0220; bh=m2n2hJwu4XQzkCkYScb3cwUX2RzR94XYxRZXacyqQHE=; b=VZxqfdHYHmWqVif6ugMbN5EjCdAZGZShRZA+f72Z01rDdeX73FI0Uqesqq/Ij41oS9m6 Q/U6DyjoJNNAxoSMtPMSEyQIWuCfOyqseh9j5olnpdVxp1ozoIBRJi6OE5ddeuDgEjnN wR6uANAiH9RnCBkiNFgnJFFMpaDki4zeWRagK4mN7HOtHSo1ZQMHlPDSG+4SZaog9HNS xXSCd11q3pTEi5ued1bbsfGEtuF43yB8zgSf517Gwsxe/vWGLj4tdYj0X3bG8XwbProA AcP22ZniGtSM+AJqC7shVSluWc9gO4yj6Sb9LKdPqpE73OEU3YSEDnEuSWbzruqHzUcD hw== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 3syygugnqq-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Fri, 08 Sep 2023 04:58:36 -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.48; Fri, 8 Sep 2023 04:58:29 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server id 15.0.1497.48 via Frontend Transport; Fri, 8 Sep 2023 04:58:29 -0700 Received: from localhost.localdomain (unknown [10.28.36.177]) by maili.marvell.com (Postfix) with ESMTP id 65FE75B692D; Fri, 8 Sep 2023 04:58:27 -0700 (PDT) From: Aakash Sasidharan To: Anoob Joseph , Volodymyr Fialko CC: , , Subject: [PATCH 3/3] test/pdcp: add SDAP combined mode tests Date: Fri, 8 Sep 2023 17:28:21 +0530 Message-ID: <20230908115821.3396269-3-asasidharan@marvell.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230908115821.3396269-1-asasidharan@marvell.com> References: <20230908115821.3396269-1-asasidharan@marvell.com> MIME-Version: 1.0 X-Proofpoint-GUID: U9ppIAulQB9_LiJpoZaJTlb8YtI76JoG X-Proofpoint-ORIG-GUID: U9ppIAulQB9_LiJpoZaJTlb8YtI76JoG X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.267,Aquarius:18.0.957,Hydra:6.0.601,FMLib:17.11.176.26 definitions=2023-09-08_09,2023-09-05_01,2023-05-22_02 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Add PDCP SDAP combined mode tests. Signed-off-by: Aakash Sasidharan --- app/test/test_pdcp.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/test/test_pdcp.c b/app/test/test_pdcp.c index 9c9e7a51fc..5f8ec08e32 100644 --- a/app/test/test_pdcp.c +++ b/app/test/test_pdcp.c @@ -2275,6 +2275,9 @@ static struct unit_test_suite sdap_test_cases = { TEST_CASE_NAMED_WITH_DATA("SDAP Known vector cases", ut_setup_pdcp, ut_teardown_pdcp, run_test_with_all_sdap_known_vec, test_attempt_single), + TEST_CASE_NAMED_WITH_DATA("SDAP combined mode", + ut_setup_pdcp, ut_teardown_pdcp, + run_test_with_all_sdap_known_vec, test_combined), TEST_CASES_END() /**< NULL terminate unit test array */ } };