blob: 92dd2380b01c6a76cc97b97a6ad329b69d2cbb3a [file] [log] [blame]
subrata_modak8afc2fa2009-05-21 18:35:31 +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_modak8afc2fa2009-05-21 18:35:31 +000017/* */
18/******************************************************************************/
19/******************************************************************************/
20/* */
21/* File: sgetmask01.c */
22/* */
23/* Description: This tests the sgetmask() syscall */
24/* */
25/* Usage: <for command-line> */
26/* sgetmask01 [-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: sgetmask01 */
37/* History: Porting from Crackerjack to LTP is done by */
38/* Manas Kumar Nayak maknayak@in.ibm.com> */
39/******************************************************************************/
40
subrata_modak8afc2fa2009-05-21 18:35:31 +000041/* NOTE: This case test the behavior of sgetmask
42# Sometime the returned "Oops"in this case don't mean anything for
43# correct or error, we check the result between different kernel and
44# try to find if there exist different returned code in different kernel
45#
46*/
47
subrata_modak8afc2fa2009-05-21 18:35:31 +000048#include <stdio.h>
49#include <signal.h>
50#include <sys/syscall.h>
51#include <unistd.h>
52#include <stdio.h>
53#include <errno.h>
54
subrata_modak8afc2fa2009-05-21 18:35:31 +000055#include "test.h"
subrata_modak8afc2fa2009-05-21 18:35:31 +000056#include "linux_syscall_numbers.h"
57
Cyril Hrubisfdce7d52013-04-04 18:35:48 +020058char *TCID = "sgetmask01";
Wanlong Gao354ebb42012-12-07 10:10:04 +080059int testno;
Cyril Hrubisfdce7d52013-04-04 18:35:48 +020060int TST_TOTAL = 2;
subrata_modak8afc2fa2009-05-21 18:35:31 +000061
62/* Extern Global Functions */
63/******************************************************************************/
64/* */
65/* Function: cleanup */
66/* */
67/* Description: Performs all one time clean up for this test on successful */
68/* completion, premature exit or failure. Closes all temporary */
69/* files, removes all temporary directories exits the test with */
70/* appropriate return code by calling tst_exit() function. */
71/* */
72/* Input: None. */
73/* */
74/* Output: None. */
75/* */
76/* Return: On failure - Exits calling tst_exit(). Non '0' return code. */
77/* On success - Exits calling tst_exit(). With '0' return code. */
78/* */
79/******************************************************************************/
Mike Frysingerc57fba52014-04-09 18:56:30 -040080void cleanup(void)
Wanlong Gao354ebb42012-12-07 10:10:04 +080081{
Garrett Cooper2c282152010-12-16 00:55:50 -080082
Wanlong Gao354ebb42012-12-07 10:10:04 +080083 tst_rmdir();
subrata_modak8afc2fa2009-05-21 18:35:31 +000084
Wanlong Gao354ebb42012-12-07 10:10:04 +080085 tst_exit();
subrata_modak8afc2fa2009-05-21 18:35:31 +000086}
87
88/* Local Functions */
89/******************************************************************************/
90/* */
91/* Function: setup */
92/* */
93/* Description: Performs all one time setup for this test. This function is */
94/* typically used to capture signals, create temporary dirs */
95/* and temporary files that may be used in the course of this */
96/* test. */
97/* */
98/* Input: None. */
99/* */
100/* Output: None. */
101/* */
102/* Return: On failure - Exits by calling cleanup(). */
103/* On success - returns 0. */
104/* */
105/******************************************************************************/
Mike Frysingerc57fba52014-04-09 18:56:30 -0400106void setup(void)
Wanlong Gao354ebb42012-12-07 10:10:04 +0800107{
108 /* Capture signals if any */
109 /* Create temporary directories */
110 TEST_PAUSE;
111 tst_tmpdir();
subrata_modak8afc2fa2009-05-21 18:35:31 +0000112}
113
Wanlong Gao354ebb42012-12-07 10:10:04 +0800114int main(int ac, char **av)
115{
116 int sig;
Cyril Hrubis89af32a2012-10-24 16:39:11 +0200117 int lc;
Cyril Hrubis0b9589f2014-05-27 17:40:33 +0200118 const char *msg;
Garrett Cooper2c282152010-12-16 00:55:50 -0800119
Wanlong Gao354ebb42012-12-07 10:10:04 +0800120 if ((msg = parse_opts(ac, av, NULL, NULL)) != NULL) {
121 tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
Wanlong Gao354ebb42012-12-07 10:10:04 +0800122 }
subrata_modak8afc2fa2009-05-21 18:35:31 +0000123
Wanlong Gao354ebb42012-12-07 10:10:04 +0800124 setup();
subrata_modak8afc2fa2009-05-21 18:35:31 +0000125
Wanlong Gao354ebb42012-12-07 10:10:04 +0800126 for (lc = 0; TEST_LOOPING(lc); ++lc) {
Caspar Zhangd59a6592013-03-07 14:59:12 +0800127 tst_count = 0;
Wanlong Gao354ebb42012-12-07 10:10:04 +0800128 for (testno = 0; testno < TST_TOTAL; ++testno) {
subrata_modak8afc2fa2009-05-21 18:35:31 +0000129
Garrett Cooperdf3eb162010-11-28 22:44:32 -0800130 for (sig = -3; sig <= SIGRTMAX + 1; sig++) {
Jan Stancek359980f2013-02-15 10:16:05 +0100131 TEST(ltp_syscall(__NR_ssetmask, sig));
132 tst_resm(TINFO, "Setting signal : %d -- "
133 "return of setmask : %ld",
134 sig, TEST_RETURN);
135 TEST(ltp_syscall(__NR_sgetmask));
Wanlong Gao354ebb42012-12-07 10:10:04 +0800136 if (TEST_RETURN != sig) {
137 tst_resm(TINFO,
138 "Oops,setting sig %d, got %ld",
139 sig, TEST_RETURN);
140 } else
141 tst_resm(TPASS,
142 "OK,setting sig %d, got %ld",
143 sig, TEST_RETURN);
144 if (sig == SIGRTMAX + 1) {
subrata_modak8afc2fa2009-05-21 18:35:31 +0000145 cleanup();
146 tst_exit();
147 }
Wanlong Gao354ebb42012-12-07 10:10:04 +0800148 }
subrata_modak8afc2fa2009-05-21 18:35:31 +0000149 }
Wanlong Gao354ebb42012-12-07 10:10:04 +0800150 }
subrata_modak8afc2fa2009-05-21 18:35:31 +0000151 cleanup();
Wanlong Gao354ebb42012-12-07 10:10:04 +0800152 tst_exit();
Chris Dearmanec6edca2012-10-17 19:54:01 -0700153}