blob: f3818c8343af6f8b7e03547c34f7a9b6de4e5c18 [file] [log] [blame]
subrata_modake70e2b42009-05-21 18:39:52 +00001/******************************************************************************/
2/* Copyright (c) Crackerjack Project., 2007 */
3/* */
4/* 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 */
6/* 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 */
subrata_modake70e2b42009-05-21 18:39:52 +000017/* */
18/******************************************************************************/
19/******************************************************************************/
20/* */
21/* File: ssetmask01.c */
22/* */
23/* Description: This tests the ssetmask() syscall */
24/* */
25/* Usage: <for command-line> */
26/* ssetmask01 [-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: 2 */
35/* */
36/* Test Name: ssetmask01 */
37/* History: Porting from Crackerjack to LTP is done by */
38/* Manas Kumar Nayak maknayak@in.ibm.com> */
39/******************************************************************************/
40
41#include <stdio.h>
42#include <errno.h>
43#include <stdlib.h>
44#include <signal.h>
45
46/* Harness Specific Include Files. */
47#include "test.h"
48#include "usctest.h"
49#include "linux_syscall_numbers.h"
50
51/* Extern Global Variables */
subrata_modake70e2b42009-05-21 18:39:52 +000052
53/* Global Variables */
vapier80a715a2009-08-28 14:11:58 +000054char *TCID = "ssetmask01"; /* Test program identifier. */
55int testno;
56int TST_TOTAL = 2; /* total number of tests in this file. */
subrata_modake70e2b42009-05-21 18:39:52 +000057
58/* Extern Global Functions */
59/******************************************************************************/
60/* */
61/* Function: cleanup */
62/* */
63/* Description: Performs all one time clean up for this test on successful */
64/* completion, premature exit or failure. Closes all temporary */
65/* files, removes all temporary directories exits the test with */
66/* appropriate return code by calling tst_exit() function. */
67/* */
68/* Input: None. */
69/* */
70/* Output: None. */
71/* */
72/* Return: On failure - Exits calling tst_exit(). Non '0' return code. */
73/* On success - Exits calling tst_exit(). With '0' return code. */
74/* */
75/******************************************************************************/
vapier80a715a2009-08-28 14:11:58 +000076extern void cleanup()
77{
Garrett Cooper2c282152010-12-16 00:55:50 -080078
vapier80a715a2009-08-28 14:11:58 +000079 TEST_CLEANUP;
80 tst_rmdir();
subrata_modake70e2b42009-05-21 18:39:52 +000081
subrata_modake70e2b42009-05-21 18:39:52 +000082}
83
84/* Local Functions */
85/******************************************************************************/
86/* */
87/* Function: setup */
88/* */
89/* Description: Performs all one time setup for this test. This function is */
90/* typically used to capture signals, create temporary dirs */
91/* and temporary files that may be used in the course of this */
92/* test. */
93/* */
94/* Input: None. */
95/* */
96/* Output: None. */
97/* */
98/* Return: On failure - Exits by calling cleanup(). */
99/* On success - returns 0. */
100/* */
101/******************************************************************************/
vapier80a715a2009-08-28 14:11:58 +0000102void setup()
103{
104 /* Capture signals if any */
105 /* Create temporary directories */
106 TEST_PAUSE;
107 tst_tmpdir();
subrata_modake70e2b42009-05-21 18:39:52 +0000108}
109
vapier80a715a2009-08-28 14:11:58 +0000110int main(int ac, char **av)
111{
Cyril Hrubis89af32a2012-10-24 16:39:11 +0200112 int lc;
113 char *msg;
subrata_modake70e2b42009-05-21 18:39:52 +0000114
Garrett Cooper45e285d2010-11-22 12:19:25 -0800115 if ((msg = parse_opts(ac, av, NULL, NULL)) != NULL) {
Garrett Cooper60fa8012010-11-22 13:50:58 -0800116 tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
vapier80a715a2009-08-28 14:11:58 +0000117 tst_exit();
118 }
subrata_modake70e2b42009-05-21 18:39:52 +0000119
vapier80a715a2009-08-28 14:11:58 +0000120 setup();
121
vapier80a715a2009-08-28 14:11:58 +0000122 for (lc = 0; TEST_LOOPING(lc); ++lc) {
123 Tst_count = 0;
124 for (testno = 0; testno < TST_TOTAL; ++testno) {
Jan Stancek359980f2013-02-15 10:16:05 +0100125 ltp_syscall(__NR_ssetmask, SIGALRM);
126 TEST(ltp_syscall(__NR_sgetmask));
vapier80a715a2009-08-28 14:11:58 +0000127 if (TEST_RETURN != SIGALRM) {
Wanlong Gao354ebb42012-12-07 10:10:04 +0800128 tst_resm(TFAIL | TTERRNO, "sgetmask() failed");
vapier80a715a2009-08-28 14:11:58 +0000129 cleanup();
130 tst_exit();
131 }
Jan Stancek359980f2013-02-15 10:16:05 +0100132 TEST(ltp_syscall(__NR_ssetmask, SIGUSR1));
vapier80a715a2009-08-28 14:11:58 +0000133 if (TEST_RETURN != SIGALRM) {
Wanlong Gao354ebb42012-12-07 10:10:04 +0800134 tst_resm(TFAIL | TTERRNO, "ssetmask() failed");
vapier80a715a2009-08-28 14:11:58 +0000135 cleanup();
136 tst_exit();
137 }
138 tst_resm(TPASS, "Got SIGALRM--Test PASS ");
139 }
140 }
subrata_modake70e2b42009-05-21 18:39:52 +0000141 cleanup();
vapier80a715a2009-08-28 14:11:58 +0000142 tst_exit();
Chris Dearmanec6edca2012-10-17 19:54:01 -0700143}