set_ep_instance_004.c

来自「HIP 硬件设备管理标准接口」· C语言 代码 · 共 76 行

C
76
字号
/* -*- 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. * * Authors: *     Chris Chia <cchia@users.sf.net> */#include <string.h>#include <stdio.h>#include <SaHpi.h>#include <oh_utils.h>/** * set_ep_instance test4. *   call set_ep_instance with entity path that has 3 elements *   expected result: only one element's instance number changed * * Return value: 0 on success, 1 on failure **/int main(int argc, char **argv){        SaHpiEntityPathT ep = {{{SAHPI_ENT_GROUP, 11},                                {SAHPI_ENT_REMOTE, 12},                                {SAHPI_ENT_FAN, 13},                                {0}}};        SaHpiEntityLocationT x = 99999;        int mydebug = 0;                 if (mydebug) printf(" test4\n");        if(set_ep_instance(&ep, SAHPI_ENT_FAN, x)) {                if (mydebug) printf("set_ep_inst test4 checkpoint 1 failed\n");                return 1;        }        if (ep.Entry[2].EntityLocation != x) {                if (mydebug) printf("set_ep_inst test failed, entInst %d != %d\n",                                   ep.Entry[2].EntityLocation, x);                return 1;        }        if (ep.Entry[2].EntityType != SAHPI_ENT_FAN) {                if (mydebug) printf("set_ep_inst test4 failed, entType %d != SAHPI_ENT_FAN\n",                                   ep.Entry[2].EntityType);                return 1;        }        if (ep.Entry[0].EntityLocation != 11) {                if (mydebug) printf("set_ep_inst test4 failed, entInst %d != 11\n",                                   ep.Entry[0].EntityLocation);                return 1;        }        if (ep.Entry[0].EntityType != SAHPI_ENT_GROUP) {                if (mydebug) printf("set_ep_inst test4 failed, entType %d != SAHPI_ENT_GROUP\n",                                   ep.Entry[0].EntityType);                return 1;        }        if (ep.Entry[1].EntityLocation != 12) {                if (mydebug) printf("set_ep_inst test4 failed, entInst %d != 12\n",                                   ep.Entry[1].EntityLocation);                return 1;        }        if (ep.Entry[1].EntityType != SAHPI_ENT_REMOTE) {                if (mydebug) printf("set_ep_inst test4 failed, entType %d! = SAHPI_ENT_REMOTE\n",                                   ep.Entry[1].EntityType);                return 1;        }        return 0;}

⌨️ 快捷键说明

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