Add POSIX test suite 1.5.2 (http://sourceforge.net/projects/posixtest/).
[dragonfly.git] / test / contrib / posixtestsuite-1.5.2 / conformance / interfaces / killpg / 5-1.c
1 /*
2  * Copyright (c) 2002-3, Intel Corporation. All rights reserved.
3  * Created by:  salwan.searty REMOVE-THIS AT intel DOT com
4  * This file is licensed under the GPL license.  For the full content
5  * of this license, see the COPYING file at the top level of this
6  * source tree.
7
8  *  Test that the killpg() function shall return -1 on failure.
9
10  */
11
12 #define _XOPEN_SOURCE 600
13
14 #include <signal.h>
15 #include <stdio.h>
16 #include <stdlib.h>
17 #include <unistd.h>
18 #include <errno.h>
19 #include "posixtest.h"
20
21 void handler(int signo)
22 {
23         printf("Caught signal being tested!\n");
24         printf("Test PASSED\n");
25         exit(0);
26 }
27
28 int main()
29 {
30         int pgrp;
31
32         if ((pgrp = getpgrp()) == -1) {
33                 printf("Could not get process group number\n");
34                 return PTS_UNRESOLVED;
35         }
36
37         if (killpg(pgrp, -1) != -1) {
38                 printf("Test FAILED: killpg did not return -1 even though it was passed an invalid signal number.");
39                 return PTS_FAIL;
40         }
41
42         printf("Test PASSED\n");
43         return PTS_PASS;
44 }