blob: f1f6ce72a33ba57c6939ad25a95b7ae052d74a03 [file] [log] [blame]
/*
*
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*
* NAME
* setpgrp02.c
*
* DESCRIPTION
* Testcase to check the basic functionality of the setpgrp(2) syscall.
*
* ALGORITHM
* Check the values that setpgrp() and getpgrp() return. The setpgrp()
* returns 0 on success in Linux, but, in DYNIX/ptx this call returns
* the new pgid.
*
* USAGE: <for command-line>
* setpgrp02 [-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
* 07/2001 Ported by Wayne Boyer
*
* RESTRICTIONS
* None
*/
#include <errno.h>
#include <sys/wait.h>
#include "test.h"
char *TCID = "setpgrp02";
int TST_TOTAL = 1;
void setup(void);
void cleanup(void);
int main(int ac, char **av)
{
int lc;
int pid, oldpgrp;
int e_code, status, retval = 0;
tst_parse_opts(ac, av, NULL, NULL);
setup();
for (lc = 0; TEST_LOOPING(lc); lc++) {
/* reset tst_count in case we are looping */
tst_count = 0;
if ((pid = FORK_OR_VFORK()) == -1) {
tst_brkm(TBROK, cleanup, "fork() failed");
}
if (pid == 0) { /* child */
oldpgrp = getpgrp();
TEST(setpgrp());
if (TEST_RETURN != 0) {
retval = 1;
tst_resm(TFAIL, "setpgrp() FAILED, errno:%d",
errno);
continue;
}
if (getpgrp() == oldpgrp) {
retval = 1;
tst_resm(TFAIL, "setpgrp() FAILED to set "
"new group id");
continue;
} else {
tst_resm(TPASS, "functionality is correct");
}
exit(retval);
} else { /* parent */
/* wait for the child to finish */
wait(&status);
/* make sure the child returned a good exit status */
e_code = status >> 8;
if ((e_code != 0) || (retval != 0)) {
tst_resm(TFAIL, "Failures reported above");
}
cleanup();
}
}
tst_exit();
}
/*
* setup() - performs all ONE TIME setup for this test.
*/
void setup(void)
{
tst_sig(FORK, DEF_HANDLER, cleanup);
TEST_PAUSE;
}
/*
* cleanup() - performs all ONE TIME cleanup for this test at
* completion or premature exit.
*/
void cleanup(void)
{
}