blob: ca5040d9fb086f6ab720619ecb6c857f6dcf7bb0 [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
subrata_modake70e2b42009-05-21 18:39:52 +000046#include "test.h"
47#include "usctest.h"
48#include "linux_syscall_numbers.h"
49
Cyril Hrubisfdce7d52013-04-04 18:35:48 +020050char *TCID = "ssetmask01";
vapier80a715a2009-08-28 14:11:58 +000051int testno;
Cyril Hrubisfdce7d52013-04-04 18:35:48 +020052int TST_TOTAL = 2;
subrata_modake70e2b42009-05-21 18:39:52 +000053
54/* Extern Global Functions */
55/******************************************************************************/
56/* */
57/* Function: cleanup */
58/* */
59/* Description: Performs all one time clean up for this test on successful */
60/* completion, premature exit or failure. Closes all temporary */
61/* files, removes all temporary directories exits the test with */
62/* appropriate return code by calling tst_exit() function. */
63/* */
64/* Input: None. */
65/* */
66/* Output: None. */
67/* */
68/* Return: On failure - Exits calling tst_exit(). Non '0' return code. */
69/* On success - Exits calling tst_exit(). With '0' return code. */
70/* */
71/******************************************************************************/
Mike Frysingerc57fba52014-04-09 18:56:30 -040072void cleanup(void)
vapier80a715a2009-08-28 14:11:58 +000073{
Garrett Cooper2c282152010-12-16 00:55:50 -080074
vapier80a715a2009-08-28 14:11:58 +000075 TEST_CLEANUP;
76 tst_rmdir();
subrata_modake70e2b42009-05-21 18:39:52 +000077
subrata_modake70e2b42009-05-21 18:39:52 +000078}
79
80/* Local Functions */
81/******************************************************************************/
82/* */
83/* Function: setup */
84/* */
85/* Description: Performs all one time setup for this test. This function is */
86/* typically used to capture signals, create temporary dirs */
87/* and temporary files that may be used in the course of this */
88/* test. */
89/* */
90/* Input: None. */
91/* */
92/* Output: None. */
93/* */
94/* Return: On failure - Exits by calling cleanup(). */
95/* On success - returns 0. */
96/* */
97/******************************************************************************/
Mike Frysingerc57fba52014-04-09 18:56:30 -040098void setup(void)
vapier80a715a2009-08-28 14:11:58 +000099{
100 /* Capture signals if any */
101 /* Create temporary directories */
102 TEST_PAUSE;
103 tst_tmpdir();
subrata_modake70e2b42009-05-21 18:39:52 +0000104}
105
vapier80a715a2009-08-28 14:11:58 +0000106int main(int ac, char **av)
107{
Cyril Hrubis89af32a2012-10-24 16:39:11 +0200108 int lc;
Cyril Hrubis0b9589f2014-05-27 17:40:33 +0200109 const char *msg;
subrata_modake70e2b42009-05-21 18:39:52 +0000110
Garrett Cooper45e285d2010-11-22 12:19:25 -0800111 if ((msg = parse_opts(ac, av, NULL, NULL)) != NULL) {
Garrett Cooper60fa8012010-11-22 13:50:58 -0800112 tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
vapier80a715a2009-08-28 14:11:58 +0000113 }
subrata_modake70e2b42009-05-21 18:39:52 +0000114
vapier80a715a2009-08-28 14:11:58 +0000115 setup();
116
vapier80a715a2009-08-28 14:11:58 +0000117 for (lc = 0; TEST_LOOPING(lc); ++lc) {
Caspar Zhangd59a6592013-03-07 14:59:12 +0800118 tst_count = 0;
vapier80a715a2009-08-28 14:11:58 +0000119 for (testno = 0; testno < TST_TOTAL; ++testno) {
Jan Stancek359980f2013-02-15 10:16:05 +0100120 ltp_syscall(__NR_ssetmask, SIGALRM);
121 TEST(ltp_syscall(__NR_sgetmask));
vapier80a715a2009-08-28 14:11:58 +0000122 if (TEST_RETURN != SIGALRM) {
Cyril Hrubis9fa8ad02014-12-16 13:20:49 +0100123 tst_brkm(TFAIL | TTERRNO, cleanup,
124 "sgetmask() failed");
vapier80a715a2009-08-28 14:11:58 +0000125 }
Jan Stancek359980f2013-02-15 10:16:05 +0100126 TEST(ltp_syscall(__NR_ssetmask, SIGUSR1));
vapier80a715a2009-08-28 14:11:58 +0000127 if (TEST_RETURN != SIGALRM) {
Cyril Hrubis9fa8ad02014-12-16 13:20:49 +0100128 tst_brkm(TFAIL | TTERRNO, cleanup,
129 "ssetmask() failed");
vapier80a715a2009-08-28 14:11:58 +0000130 }
131 tst_resm(TPASS, "Got SIGALRM--Test PASS ");
132 }
133 }
subrata_modake70e2b42009-05-21 18:39:52 +0000134 cleanup();
vapier80a715a2009-08-28 14:11:58 +0000135 tst_exit();
Chris Dearmanec6edca2012-10-17 19:54:01 -0700136}