/* * * Copyright (c) International Business Machines Corp., 2001 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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. See * the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /* * NAME * semop01.c * * DESCRIPTION * semop01 - test that semop() basic functionality is correct * * ALGORITHM * create a semaphore set and initialize some values * loop if that option was specified * call semop() to set values for the primitive semaphores * check the return code * if failure, issue a FAIL message. * otherwise, * if doing functionality testing * get the semaphore values and compare with expected values * if correct, * issue a PASS message * otherwise * issue a FAIL message * else issue a PASS message * call cleanup * * USAGE: * semop01 [-c n] [-f] [-i n] [-I x] [-P x] [-t] * where, -c n : Run n copies concurrently. * -f : Turn off functionality Testing. * -i n : Execute test n times. * -I x : Execute test for x seconds. * -P x : Pause for x seconds between iterations. * -t : Turn on syscall timing. * * HISTORY * 03/2001 - Written by Wayne Boyer * 17/01/02 - Modified. Manoj Iyer, IBM Austin. TX. manjo@austin.ibm.com * 4th argument to semctl() system call was modified according * to man pages. * In my opinion The test should not even have compiled but * it was working due to some mysterious reason. * * RESTRICTIONS * none */ #include "ipcsem.h" #define NSEMS 4 /* the number of primitive semaphores to test */ char *TCID = "semop01"; int TST_TOTAL = 1; extern int Tst_count; int sem_id_1 = -1; /* a semaphore set with read & alter permissions */ struct sembuf sops[PSEMS]; /* an array of sembuf structures */ int main(int ac, char **av) { union semun get_arr; int lc; /* loop counter */ char *msg; /* message returned from parse_opts */ int i; int fail = 0; get_arr.array = malloc(sizeof(unsigned short int) * PSEMS); /* parse standard options */ if ((msg = parse_opts(ac, av, (option_t *)NULL, NULL)) != (char *)NULL){ tst_brkm(TBROK, cleanup, "OPTION PARSING ERROR - %s", msg); } setup(); /* global setup */ /* The following loop checks looping state if -i option given */ for (lc = 0; TEST_LOOPING(lc); lc++) { /* reset Tst_count in case we are looping */ Tst_count = 0; /* * Use TEST macro to make the call */ TEST(semop(sem_id_1, sops, NSEMS)); if (TEST_RETURN == -1) { tst_resm(TFAIL, "%s call failed - errno = %d " ": %s", TCID, TEST_ERRNO, strerror(TEST_ERRNO)); } else { if (STD_FUNCTIONAL_TEST) { /* get the values and make sure they */ /* are the same as what was set */ if (semctl(sem_id_1, 0, GETALL, get_arr) == -1) { tst_brkm(TBROK, cleanup, "semctl() " "failed in functional test"); } for (i=0; i