1 /*
2 * Copyright (c) 2000 Silicon Graphics, Inc. All Rights Reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it would be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11 *
12 * Further, this software is distributed without any warranty that it is
13 * free of the rightful claim of any third person regarding infringement
14 * or the like. Any license provided herein, whether implied or
15 * otherwise, applies only to this software file. Patent licenses, if
16 * any, provided herein do not apply to combinations of this program with
17 * other software, or any other product whatsoever.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 *
23 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24 * Mountain View, CA 94043, or:
25 *
26 * http://www.sgi.com
27 *
28 * For further information regarding this notice, see:
29 *
30 * http://oss.sgi.com/projects/GenInfo/NoticeExplan/
31 *
32 */
33 /* $Id: dup01.c,v 1.6 2009/10/13 14:00:46 subrata_modak Exp $ */
34 /**********************************************************
35 *
36 * OS Test - Silicon Graphics, Inc.
37 *
38 * TEST IDENTIFIER : dup01
39 *
40 * EXECUTED BY : anyone
41 *
42 * TEST TITLE : Basic test for dup(2)
43 *
44 * PARENT DOCUMENT : usctpl01
45 *
46 * TEST CASE TOTAL : 1
47 *
48 * WALL CLOCK TIME : 1
49 *
50 * CPU TYPES : ALL
51 *
52 * AUTHOR : William Roske
53 *
54 * CO-PILOT : Dave Fenner
55 *
56 * DATE STARTED : 03/30/92
57 *
58 * INITIAL RELEASE : UNICOS 7.0
59 *
60 * TEST CASES
61 *
62 * 1.) dup(2) returns...(See Description)
63 *
64 * INPUT SPECIFICATIONS
65 * The standard options for system call tests are accepted.
66 * (See the parse_opts(3) man page).
67 *
68 * OUTPUT SPECIFICATIONS
69 *$
70 * DURATION
71 * Terminates - with frequency and infinite modes.
72 *
73 * SIGNALS
74 * Uses SIGUSR1 to pause before test if option set.
75 * (See the parse_opts(3) man page).
76 *
77 * RESOURCES
78 * None
79 *
80 * ENVIRONMENTAL NEEDS
81 * No run-time environmental needs.
82 *
83 * SPECIAL PROCEDURAL REQUIREMENTS
84 * None
85 *
86 * INTERCASE DEPENDENCIES
87 * None
88 *
89 * DETAILED DESCRIPTION
90 * This is a Phase I test for the dup(2) system call. It is intended
91 * to provide a limited exposure of the system call, for now. It
92 * should/will be extended when full functional tests are written for
93 * dup(2).
94 *
95 * Setup:
96 * Setup signal handling.
97 * Pause for SIGUSR1 if option specified.
98 *
99 * Test:
100 * Loop if the proper options are given.
101 * Execute system call
102 * Check return code, if system call failed (return=-1)
103 * Log the errno and Issue a FAIL message.
104 * Otherwise, Issue a PASS message.
105 *
106 * Cleanup:
107 * Print errno log and/or timing stats if options given
108 *
109 *
110 *#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#**/
111
112 #include <sys/types.h>
113 #include <fcntl.h>
114 #include <errno.h>
115 #include <string.h>
116 #include <signal.h>
117 #include "test.h"
118 #include "safe_macros.h"
119
120 void setup();
121 void cleanup();
122
123 char *TCID = "dup01";
124 int TST_TOTAL = 1;
125
126 char filename[255];
127 int fd;
128
main(int ac,char ** av)129 int main(int ac, char **av)
130 {
131 int lc;
132
133 tst_parse_opts(ac, av, NULL, NULL);
134
135 setup();
136
137 for (lc = 0; TEST_LOOPING(lc); lc++) {
138
139 tst_count = 0;
140
141 /*
142 * Call dup(2)
143 */
144 TEST(dup(fd));
145
146 /* check return code */
147 if (TEST_RETURN == -1) {
148 tst_resm(TFAIL, "dup(%s) Failed, errno=%d : %s",
149 filename, TEST_ERRNO, strerror(TEST_ERRNO));
150 } else {
151 tst_resm(TPASS, "dup(%s) returned %ld",
152 filename, TEST_RETURN);
153
154 /* close the new file so loops do not open too many files */
155 SAFE_CLOSE(cleanup, TEST_RETURN);
156 }
157
158 }
159
160 cleanup();
161 tst_exit();
162 }
163
setup(void)164 void setup(void)
165 {
166 fd = -1;
167
168 tst_sig(FORK, DEF_HANDLER, cleanup);
169
170 TEST_PAUSE;
171
172 tst_tmpdir();
173
174 sprintf(filename, "dupfile");
175 if ((fd = open(filename, O_RDWR | O_CREAT, 0700)) == -1)
176 tst_brkm(TBROK | TERRNO, cleanup, "open failed");
177 }
178
cleanup(void)179 void cleanup(void)
180 {
181 if (fd != -1)
182 if (close(fd) == -1)
183 tst_resm(TWARN | TERRNO, "closing %s failed", filename);
184
185 tst_rmdir();
186
187 }
188