⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ep_derive_001.c

📁 HIP 硬件设备管理标准接口
💻 C
字号:
/* -*- linux-c -*- *  * (C) Copyright IBM Corp. 2004 * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  This * file and program are licensed under a BSD style license.  See * the Copying file included with the OpenHPI distribution for * full licensing terms. * * Author(s): *     Steve Sherman <stevees@us.ibm.com> */#include <glib.h>#include <stdio.h>#include <string.h>#include <SaHpi.h>#include <oh_utils.h>/** * Tests string derive function - success case * - multiple substitutions * - expanded returned oid string *  * Return value: 0 on success, 1 on failure **/int main(int argc, char **argv) {	/*****************************	 * oh_derive_string testcases         *****************************/	gchar *oid, *in_oid, *expected_oid;	SaHpiEntityPathT ep = {		.Entry[0] = 		{			.EntityType = SAHPI_ENT_SYS_MGMNT_MODULE,			.EntityLocation = 100		},		{			.EntityType = SAHPI_ENT_SUB_CHASSIS,			.EntityLocation = 99		}	};	/* Multiple character/digit expansion testcase */	in_oid = "1.x.3.x";	expected_oid = "1.99.3.100";	oid = oh_derive_string(&ep, in_oid);	if (strcmp(expected_oid, oid)) {		g_free(oid);		printf("  Error! Testcase failed. Line=%d\n", __LINE__);		printf("  Received OID=%s; Expected OID=%s\n", oid, expected_oid);                return -1;        }        g_free(oid);	/* No expansion testcase */	in_oid = "1.99.3.100";	expected_oid = "1.99.3.100";	oid = oh_derive_string(&ep, in_oid);	if (strcmp(expected_oid, oid)) {		g_free(oid);		printf("  Error! Testcase failed. Line=%d\n", __LINE__);		printf("  Received OID=%s; Expected OID=%s\n", oid, expected_oid);                return -1;        }        g_free(oid);        return 0;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -