blob: 438d3c3d23aaa6ba43c8a7ad3453aabb185615f6 [file] [log] [blame]
subrata_modakf2badb62009-05-21 18:45:51 +00001/******************************************************************************/
Garrett Cooperddc4c0d2010-11-22 15:05:35 -08002/* Copyright (c) Crackerjack Project., 2007 */
3/* */
subrata_modakf2badb62009-05-21 18:45:51 +00004/* This program is free software; you can redistribute it and/or modify */
5/* it under the terms of the GNU General Public License as published by */
Garrett Cooperddc4c0d2010-11-22 15:05:35 -08006/* the Free Software Foundation; either version 2 of the License, or */
7/* (at your option) any later version. */
8/* */
9/* This program is distributed in the hope that it will be useful, */
10/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
11/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See */
12/* the GNU General Public License for more details. */
13/* */
14/* You should have received a copy of the GNU General Public License */
15/* along with this program; if not, write to the Free Software */
Wanlong Gao4548c6c2012-10-19 18:03:36 +080016/* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */
Garrett Cooperddc4c0d2010-11-22 15:05:35 -080017/* */
subrata_modakf2badb62009-05-21 18:45:51 +000018/******************************************************************************/
19/******************************************************************************/
Garrett Cooperddc4c0d2010-11-22 15:05:35 -080020/* */
21/* File: tkill01.c */
22/* */
23/* Description: This tests the tkill() syscall */
24/* */
25/* Usage: <for command-line> */
26/* tkill01 [-c n] [-e][-i n] [-I x] [-p x] [-t] */
27/* where, -c n : Run n copies concurrently. */
28/* -e : Turn on errno logging. */
29/* -i n : Execute test n times. */
30/* -I x : Execute test for x seconds. */
31/* -P x : Pause for x seconds between iterations. */
32/* -t : Turn on syscall timing. */
33/* */
34/* Total Tests: 1 */
35/* */
36/* Test Name: tkill01 */
37/* History: Porting from Crackerjack to LTP is done by */
38/* Manas Kumar Nayak maknayak@in.ibm.com> */
subrata_modakf2badb62009-05-21 18:45:51 +000039/******************************************************************************/
40
41#include <stdio.h>
42#include <stdlib.h>
43#include <errno.h>
44#include <unistd.h>
45
46#include <signal.h>
47#include <sys/syscall.h>
48#include <linux/unistd.h>
49#include <sys/types.h>
50
subrata_modakf2badb62009-05-21 18:45:51 +000051/* Harness Specific Include Files. */
52#include "test.h"
53#include "usctest.h"
54#include "linux_syscall_numbers.h"
55
56/* Extern Global Variables */
subrata_modakf2badb62009-05-21 18:45:51 +000057
58/* Global Variables */
Wanlong Gao354ebb42012-12-07 10:10:04 +080059char *TCID = "tkill01"; /* Test program identifier. */
60int testno;
61int TST_TOTAL = 2; /* total number of tests in this file. */
subrata_modakf2badb62009-05-21 18:45:51 +000062
Wanlong Gao354ebb42012-12-07 10:10:04 +080063void cleanup()
64{
Garrett Cooper2c282152010-12-16 00:55:50 -080065
Garrett Cooperddc4c0d2010-11-22 15:05:35 -080066 TEST_CLEANUP;
67 tst_rmdir();
subrata_modakf2badb62009-05-21 18:45:51 +000068}
69
Wanlong Gao354ebb42012-12-07 10:10:04 +080070void setup()
71{
Garrett Cooperddc4c0d2010-11-22 15:05:35 -080072 TEST_PAUSE;
73 tst_tmpdir();
subrata_modakf2badb62009-05-21 18:45:51 +000074}
75
76int sig_count = 0;
77
78void sig_action(int sig)
79{
Garrett Cooperddc4c0d2010-11-22 15:05:35 -080080 sig_count = 1;
subrata_modakf2badb62009-05-21 18:45:51 +000081}
82
Wanlong Gao354ebb42012-12-07 10:10:04 +080083int main(int ac, char **av)
84{
Garrett Cooperddc4c0d2010-11-22 15:05:35 -080085 int tid;
Cyril Hrubis89af32a2012-10-24 16:39:11 +020086 int lc;
87 char *msg;
Garrett Cooper2c282152010-12-16 00:55:50 -080088
Garrett Cooperddc4c0d2010-11-22 15:05:35 -080089 if ((msg = parse_opts(ac, av, NULL, NULL)) != NULL)
90 tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
subrata_modakf2badb62009-05-21 18:45:51 +000091
Garrett Cooperddc4c0d2010-11-22 15:05:35 -080092 setup();
subrata_modakf2badb62009-05-21 18:45:51 +000093
Garrett Cooperddc4c0d2010-11-22 15:05:35 -080094 for (lc = 0; TEST_LOOPING(lc); ++lc) {
95 Tst_count = 0;
96 for (testno = 0; testno < TST_TOTAL; ++testno) {
Garrett Coopera6b32772010-12-19 08:16:45 -080097 if (signal(SIGUSR1, &sig_action) == SIG_ERR)
Wanlong Gao354ebb42012-12-07 10:10:04 +080098 tst_brkm(TBROK | TERRNO, cleanup,
99 "signal(SIGUSR1, ..) failed");
Jan Stancek359980f2013-02-15 10:16:05 +0100100 TEST(tid = ltp_syscall(__NR_gettid));
Garrett Cooperddc4c0d2010-11-22 15:05:35 -0800101 if (TEST_RETURN == -1) {
Wanlong Gao354ebb42012-12-07 10:10:04 +0800102 tst_resm(TFAIL | TTERRNO, "tkill failed");
Garrett Cooperddc4c0d2010-11-22 15:05:35 -0800103 }
Jan Stancek359980f2013-02-15 10:16:05 +0100104 TEST(ltp_syscall(__NR_tkill, tid, SIGUSR1));
Garrett Cooperddc4c0d2010-11-22 15:05:35 -0800105 if (TEST_RETURN == 0) {
106 tst_resm(TPASS, "tkill call succeeded");
107 } else {
Wanlong Gao354ebb42012-12-07 10:10:04 +0800108 tst_resm(TFAIL | TTERRNO, "tkill failed");
Garrett Cooperddc4c0d2010-11-22 15:05:35 -0800109 }
110 }
Garrett Cooper2c282152010-12-16 00:55:50 -0800111 }
subrata_modakf2badb62009-05-21 18:45:51 +0000112 cleanup();
Garrett Cooperddc4c0d2010-11-22 15:05:35 -0800113 tst_exit();
Chris Dearmanec6edca2012-10-17 19:54:01 -0700114}