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 78FD745D04; Thu, 14 Nov 2024 12:41:25 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id BE2B642EAE; Thu, 14 Nov 2024 12:40:21 +0100 (CET) Received: from szxga02-in.huawei.com (szxga02-in.huawei.com [45.249.212.188]) by mails.dpdk.org (Postfix) with ESMTP id 4652442E9A for ; Thu, 14 Nov 2024 12:40:11 +0100 (CET) Received: from mail.maildlp.com (unknown [172.19.163.174]) by szxga02-in.huawei.com (SkyGuard) with ESMTP id 4Xpynt4p5gzpZLr; Thu, 14 Nov 2024 19:38:10 +0800 (CST) Received: from dggpeml500011.china.huawei.com (unknown [7.185.36.84]) by mail.maildlp.com (Postfix) with ESMTPS id 317111402E0; Thu, 14 Nov 2024 19:40:03 +0800 (CST) Received: from localhost.huawei.com (10.50.165.33) by dggpeml500011.china.huawei.com (7.185.36.84) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.1.2507.39; Thu, 14 Nov 2024 19:40:02 +0800 From: Dengdui Huang To: CC: , , , , , , , , , , Subject: [PATCH v6 14/14] test: use rte strerror Date: Thu, 14 Nov 2024 19:40:00 +0800 Message-ID: <20241114114000.1677350-15-huangdengdui@huawei.com> X-Mailer: git-send-email 2.33.0 In-Reply-To: <20241114114000.1677350-1-huangdengdui@huawei.com> References: <20231114082539.1858594-1-huangdengdui@huawei.com> <20241114114000.1677350-1-huangdengdui@huawei.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Originating-IP: [10.50.165.33] X-ClientProxiedBy: dggems701-chm.china.huawei.com (10.3.19.178) To dggpeml500011.china.huawei.com (7.185.36.84) 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 The rte_errno may be an RTE-specific error code, use rte_strerror() instead of strerror(). Signed-off-by: Dengdui Huang --- app/test/test_bpf.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/test/test_bpf.c b/app/test/test_bpf.c index 90e10d7d2c..2f9412e28c 100644 --- a/app/test/test_bpf.c +++ b/app/test/test_bpf.c @@ -3225,7 +3225,7 @@ run_test(const struct bpf_test *tst) bpf = rte_bpf_load(&tst->prm); if (bpf == NULL) { printf("%s@%d: failed to load bpf code, error=%d(%s);\n", - __func__, __LINE__, rte_errno, strerror(rte_errno)); + __func__, __LINE__, rte_errno, rte_strerror(rte_errno)); return -1; } @@ -3321,14 +3321,14 @@ test_bpf_match(pcap_t *pcap, const char *str, prm = rte_bpf_convert(&fcode); if (prm == NULL) { printf("%s@%d: bpf_convert('%s') failed,, error=%d(%s);\n", - __func__, __LINE__, str, rte_errno, strerror(rte_errno)); + __func__, __LINE__, str, rte_errno, rte_strerror(rte_errno)); goto error; } bpf = rte_bpf_load(prm); if (bpf == NULL) { printf("%s@%d: failed to load bpf code, error=%d(%s);\n", - __func__, __LINE__, rte_errno, strerror(rte_errno)); + __func__, __LINE__, rte_errno, rte_strerror(rte_errno)); goto error; } @@ -3444,7 +3444,7 @@ test_bpf_filter(pcap_t *pcap, const char *s) prm = rte_bpf_convert(&fcode); if (prm == NULL) { printf("%s@%d: bpf_convert('%s') failed,, error=%d(%s);\n", - __func__, __LINE__, s, rte_errno, strerror(rte_errno)); + __func__, __LINE__, s, rte_errno, rte_strerror(rte_errno)); goto error; } @@ -3454,7 +3454,7 @@ test_bpf_filter(pcap_t *pcap, const char *s) bpf = rte_bpf_load(prm); if (bpf == NULL) { printf("%s@%d: failed to load bpf code, error=%d(%s);\n", - __func__, __LINE__, rte_errno, strerror(rte_errno)); + __func__, __LINE__, rte_errno, rte_strerror(rte_errno)); goto error; } -- 2.33.0