blob: 390a01d65287998e93d2de46e58208b07103b021 [file] [log] [blame]
plars865695b2001-08-27 22:15:12 +00001/*
2 *
3 * Copyright (c) International Business Machines Corp., 2001
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
13 * the GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
Wanlong Gao4548c6c2012-10-19 18:03:36 +080017 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
plars865695b2001-08-27 22:15:12 +000018 */
19
20/*
21 * NAME
robbiewb4806352002-02-27 18:09:56 +000022 * uname03.c
plars865695b2001-08-27 22:15:12 +000023 *
24 * DESCRIPTION
robbiewb4806352002-02-27 18:09:56 +000025 * uname03 - call uname() and make sure it succeeds
plars865695b2001-08-27 22:15:12 +000026 *
27 * ALGORITHM
28 * loop if that option was specified
29 * issue the system call
30 * check the errno value
31 * issue a PASS message if we get zero
32 * otherwise, the tests fails
33 * issue a FAIL message
34 * break any remaining tests
35 * call cleanup
36 *
37 * USAGE: <for command-line>
robbiewb4806352002-02-27 18:09:56 +000038 * uname03 [-c n] [-f] [-i n] [-I x] [-p x] [-t]
plars865695b2001-08-27 22:15:12 +000039 * where, -c n : Run n copies concurrently.
40 * -f : Turn off functionality Testing.
41 * -i n : Execute test n times.
42 * -I x : Execute test for x seconds.
43 * -P x : Pause for x seconds between iterations.
44 * -t : Turn on syscall timing.
45 *
46 * History
47 * 07/2001 John George
48 * -Ported
49 *
50 * Restrictions
51 * none
52 */
53
54#include "test.h"
55#include "usctest.h"
56
57#include <errno.h>
58#include <sys/utsname.h>
59#include <string.h>
60
61void cleanup(void);
62void setup(void);
63
subrata_modak56207ce2009-03-23 13:35:39 +000064char *TCID = "uname03";
plars865695b2001-08-27 22:15:12 +000065int TST_TOTAL = 1;
plars865695b2001-08-27 22:15:12 +000066
67#define LINUX "Linux"
68
plars74948ad2002-11-14 16:16:14 +000069int main(int ac, char **av)
plars865695b2001-08-27 22:15:12 +000070{
subrata_modak56207ce2009-03-23 13:35:39 +000071 int lc; /* loop counter */
72 char *msg; /* message returned from parse_opts */
plars865695b2001-08-27 22:15:12 +000073 struct utsname *buf;
74
75 /* parse standard options */
Garrett Cooper45e285d2010-11-22 12:19:25 -080076 if ((msg = parse_opts(ac, av, NULL, NULL)) != NULL) {
Garrett Cooper60fa8012010-11-22 13:50:58 -080077 tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
Garrett Cooper53740502010-12-16 00:04:01 -080078 }
plars865695b2001-08-27 22:15:12 +000079
subrata_modak56207ce2009-03-23 13:35:39 +000080 setup(); /* global setup */
plars865695b2001-08-27 22:15:12 +000081
82 /* allocate some space for buf */
83
84 if ((buf = (struct utsname *)malloc((size_t)
subrata_modak56207ce2009-03-23 13:35:39 +000085 sizeof(struct utsname))) == NULL) {
plars865695b2001-08-27 22:15:12 +000086 tst_brkm(TBROK, cleanup, "malloc failed for buf");
Garrett Cooper53740502010-12-16 00:04:01 -080087 }
plars865695b2001-08-27 22:15:12 +000088
89 /* The following loop checks looping state if -i option given */
90
91 for (lc = 0; TEST_LOOPING(lc); lc++) {
92 /* reset Tst_count in case we are looping */
93 Tst_count = 0;
94
95 /* Now make the system call with the TEST() macro */
subrata_modakbdbaec52009-02-26 12:14:51 +000096
plars865695b2001-08-27 22:15:12 +000097 TEST(uname(buf));
subrata_modakbdbaec52009-02-26 12:14:51 +000098
plars865695b2001-08-27 22:15:12 +000099 if (TEST_RETURN != 0) {
100 tst_resm(TFAIL, "%s failed - errno = %d - %s",
subrata_modak56207ce2009-03-23 13:35:39 +0000101 TCID, TEST_ERRNO, strerror(TEST_ERRNO));
plars865695b2001-08-27 22:15:12 +0000102 } else {
subrata_modakbdbaec52009-02-26 12:14:51 +0000103
plars865695b2001-08-27 22:15:12 +0000104 if (STD_FUNCTIONAL_TEST) {
105 if ((strcmp(buf->sysname, LINUX)) == 0) {
106 tst_resm(TPASS, "%s functionality test "
subrata_modak56207ce2009-03-23 13:35:39 +0000107 "succeeded", TCID);
plars865695b2001-08-27 22:15:12 +0000108 } else {
109 tst_resm(TFAIL, "%s functionality test "
subrata_modak56207ce2009-03-23 13:35:39 +0000110 "failed", TCID);
plars865695b2001-08-27 22:15:12 +0000111 }
112 } else {
113 tst_resm(TPASS, "%s call succeeded", TCID);
114 }
115 }
116 }
117
118 free(buf);
119 buf = NULL;
120
121 cleanup();
122
Garrett Cooper7d0a4a52010-12-16 10:05:08 -0800123 tst_exit();
robbiew9a66de12003-03-27 22:16:14 +0000124
plars865695b2001-08-27 22:15:12 +0000125}
126
127/*
128 * setup() - performs all the ONE TIME setup for this test.
129 */
subrata_modak56207ce2009-03-23 13:35:39 +0000130void setup(void)
plars865695b2001-08-27 22:15:12 +0000131{
Garrett Cooper2c282152010-12-16 00:55:50 -0800132
plars865695b2001-08-27 22:15:12 +0000133 tst_sig(FORK, DEF_HANDLER, cleanup);
subrata_modakbdbaec52009-02-26 12:14:51 +0000134
plars865695b2001-08-27 22:15:12 +0000135 TEST_PAUSE;
136}
137
138/*
139 * cleanup() - performs all the ONE TIME cleanup for this test at completion
140 * or premature exit.
141 */
subrata_modak56207ce2009-03-23 13:35:39 +0000142void cleanup(void)
plars865695b2001-08-27 22:15:12 +0000143{
144 /*
145 * print timing stats if that option was specified.
146 * print errno log if that option was specified.
147 */
148 TEST_CLEANUP;
149
Chris Dearmanec6edca2012-10-17 19:54:01 -0700150}