From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 0611E45B0C; Fri, 11 Oct 2024 05:33:37 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C277640273; Fri, 11 Oct 2024 05:33:36 +0200 (CEST) Received: from szxga01-in.huawei.com (szxga01-in.huawei.com [45.249.212.187]) by mails.dpdk.org (Postfix) with ESMTP id CA4D440273 for ; Fri, 11 Oct 2024 05:33:34 +0200 (CEST) Received: from mail.maildlp.com (unknown [172.19.163.252]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4XPscH61V5z10N3d; Fri, 11 Oct 2024 11:31:43 +0800 (CST) Received: from dggpeml500024.china.huawei.com (unknown [7.185.36.10]) by mail.maildlp.com (Postfix) with ESMTPS id A9EB4180AB7; Fri, 11 Oct 2024 11:33:29 +0800 (CST) Received: from localhost.localdomain (10.50.165.33) by dggpeml500024.china.huawei.com (7.185.36.10) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.1.2507.39; Fri, 11 Oct 2024 11:33:29 +0800 From: Chengwen Feng To: , CC: , Subject: [PATCH v2 0/7] refactor kvargs test Date: Fri, 11 Oct 2024 03:34:09 +0000 Message-ID: <20241011033416.10593-1-fengchengwen@huawei.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20231103095325.47843-1-fengchengwen@huawei.com> References: <20231103095325.47843-1-fengchengwen@huawei.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.50.165.33] X-ClientProxiedBy: dggems706-chm.china.huawei.com (10.3.19.183) To dggpeml500024.china.huawei.com (7.185.36.10) 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 When developing patchset [1], I found the kvargs test is hard to understand when tried to add some testcase. So refactor kvargs by: 1. introduce UT suite framework. 2. extract big test_valid_kvargs() to five part. And add myself for voluntary maintenance of the kvargs library. Note: to ensure patch independenct, new API which in patchset [1] are not included in this patchset. [1] https://patchwork.dpdk.org/project/dpdk/cover/20231103073811.13196-1-fengchengwen@huawei.com/ Chengwen Feng (7): app/test: introduce UT suite framework for kvargs app/test: extract basic token count testcase for kvargs app/test: extract without keys testcase for kvargs app/test: extract with keys testcase for kvargs app/test: extract parse list value testcase for kvargs app/test: extract parse empty elements testcase for kvargs maintainers: update for kvargs library --- v2: remove copyright line and add Stephen's ack. MAINTAINERS | 1 + app/test/test_kvargs.c | 255 ++++++++++++++++++++--------------------- 2 files changed, 127 insertions(+), 129 deletions(-) -- 2.17.1