From patchwork Tue Sep 27 06:00:34 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gowrishankar Muthukrishnan X-Patchwork-Id: 116925 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 6929DA00C2; Tue, 27 Sep 2022 08:00:50 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3C8D74113C; Tue, 27 Sep 2022 08:00:50 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 2DA4A410D0 for ; Tue, 27 Sep 2022 08:00:49 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.17.1.5/8.17.1.5) with ESMTP id 28R3hT1V016181; Mon, 26 Sep 2022 23:00:48 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=XyTEOB8FQ5R7RUNsCQai8pJ4eTedEqkFSEfxRW9Sxds=; b=ZypeZhhBPzEWAuzwAq+c7Zy0HLf5bKaRBQHf1GG05HTbJIkeuY7y9Ax01hHTji+0kAYQ yJ262AwMKXsyrpG23EpQhttHr2mNVl2ZrYqgT2+mO/6bjEP+7LqIP3ueWhzJZ21NFaYS xAy+YcnVsBfF+b0+5VZAJRE19YhaLLGSbKaRp01qO8zO8qB2FOLjBMvobYATIvSv6JQI oaeFMCQGbrmkBbiJNJxDbDY2ReQVZ1heyVCKwp0+kgdErfyi7xjfL//ehxpBPh124Jo4 4CJsB+9pbmI6AK3dDXyv6uG8W2uR8IFkIMWXUVyY524h4hfK7C6bF43QUsPfxuzYeHMF SQ== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3jt1dp8p7s-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Mon, 26 Sep 2022 23:00:48 -0700 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.18; Mon, 26 Sep 2022 23:00:46 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server id 15.0.1497.18 via Frontend Transport; Mon, 26 Sep 2022 23:00:46 -0700 Received: from localhost.localdomain (unknown [10.28.34.38]) by maili.marvell.com (Postfix) with ESMTP id C3DCB5E6861; Mon, 26 Sep 2022 23:00:43 -0700 (PDT) From: Gowrishankar Muthukrishnan To: CC: Anoob Joseph , Fan Zhang , Brian Dooley , Akhil Goyal , , Gowrishankar Muthukrishnan Subject: [v2 1/7] examples/fips_validation: fix parsing test group info Date: Tue, 27 Sep 2022 11:30:34 +0530 Message-ID: X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-Proofpoint-ORIG-GUID: bJOnEDPSVz7NVv5qes2GAj-c7U7Ve3vB X-Proofpoint-GUID: bJOnEDPSVz7NVv5qes2GAj-c7U7Ve3vB X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.895,Hydra:6.0.528,FMLib:17.11.122.1 definitions=2022-09-26_11,2022-09-22_02,2022-06-22_01 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 If a test group does not have expected key, it should not crash. This patch fixes parsing test group info to continue further when a key does not exist (as in asym tests). Fixes: 58cc98801eb ("examples/fips_validation: add JSON parsing") Signed-off-by: Gowrishankar Muthukrishnan Acked-by: Brian Dooley --- examples/fips_validation/fips_validation.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/fips_validation/fips_validation.c b/examples/fips_validation/fips_validation.c index 6c9f5e42a4..06aeffe495 100644 --- a/examples/fips_validation/fips_validation.c +++ b/examples/fips_validation/fips_validation.c @@ -488,6 +488,9 @@ fips_test_parse_one_json_group(void) for (i = 0; info.interim_callbacks[i].key != NULL; i++) { param = json_object_get(json_info.json_test_group, info.interim_callbacks[i].key); + if (!param) + continue; + switch (json_typeof(param)) { case JSON_STRING: snprintf(json_value, 256, "%s", json_string_value(param));