functionality-test-suite-20020114
[openafs.git] / src / tests / test-parallel2.c
1 /*
2  * Copyright (c) 1995 - 2000 Kungliga Tekniska Högskolan
3  * (Royal Institute of Technology, Stockholm, Sweden).
4  * All rights reserved.
5  * 
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 
17  * 3. Neither the name of the Institute nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  * 
21  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #ifdef HAVE_CONFIG_H
35 #include <config.h>
36 #endif
37
38 #include <stdio.h>
39 #include <sys/types.h>
40 #include <sys/wait.h>
41 #include <sys/param.h>
42 #include <sys/stat.h>
43 #include <unistd.h>
44
45 #include <err.h>
46
47 #include <fcntl.h>
48
49 #ifdef RCSID
50 RCSID("$Id$");
51 #endif
52
53 #define WORKER_TIMES 1000
54 #define NUM_WORKER 100
55
56 static int
57 getcwd_worker (int num)
58 {
59     char name[17];
60     int i;
61
62     snprintf (name, sizeof(name), "%d", num);
63     if (mkdir (name, 0777) < 0)
64         err (1, "mkdir %s", name);
65     if (chdir (name) < 0)
66         err (1, "chdir %s", name);
67     for (i = 0; i < WORKER_TIMES; ++i) {
68         char buf[256];
69
70         getcwd (buf, sizeof(buf));
71     }
72     return 0;
73 }
74
75 static int
76 mkdir_worker (int num)
77 {
78     int i;
79
80     for (i = 0; i < WORKER_TIMES; ++i){
81         char name[256];
82
83         snprintf (name, sizeof(name), "m%d-%d", num, i);
84         mkdir (name, 0777);
85     }
86     return 0;
87 }
88
89 static int
90 mkdir_rmdir_worker (int num)
91 {
92     int i;
93
94     for (i = 0; i < WORKER_TIMES; ++i){
95         char name[256];
96
97         snprintf (name, sizeof(name), "rm%d-%d", num, i);
98         mkdir (name, 0777);
99     }
100     for (i = 0; i < WORKER_TIMES; ++i){
101         char name[256];
102
103         snprintf (name, sizeof(name), "rm%d-%d", num, i);
104         rmdir (name);
105     }
106     return 0;
107 }
108
109 static int
110 rename_worker (int num)
111 {
112     int i;
113
114     for (i = 0; i < WORKER_TIMES; ++i){
115         char name[256];
116         int fd;
117
118         snprintf (name, sizeof(name), "rm%d-%d", num, i);
119         fd = open (name, O_WRONLY | O_CREAT, 0777);
120         close (fd);
121     }
122     for (i = 0; i < WORKER_TIMES; ++i){
123         char name[256], name2[256];
124
125         snprintf (name, sizeof(name), "rm%d-%d", num, i);
126         snprintf (name2, sizeof(name2), "rn%d-%d", num, i);
127         rename (name, name2);
128     }
129     return 0;
130 }
131
132 static int
133 stat_worker (int num)
134 {
135     char name[17];
136     int i;
137     char buf[256];
138     struct stat sb;
139
140     snprintf (name, sizeof(name), "%d", num);
141     if (mkdir (name, 0777) < 0)
142         err (1, "mkdir %s", name);
143     if (chdir (name) < 0)
144         err (1, "chdir %s", name);
145     for (i = 0; i < WORKER_TIMES; ++i) {
146         getcwd (buf, sizeof(buf));
147         stat (buf, &sb);
148     }
149     return 0;
150 }
151
152 static int (*workers[])(int) = {getcwd_worker, mkdir_worker,
153                                 mkdir_rmdir_worker, rename_worker,
154                                 stat_worker};
155
156 static int nworkers = sizeof(workers)/sizeof(*workers);
157
158 int
159 main(int argc, char **argv)
160 {
161     int i, ret;
162     
163
164     for (i = 0; i < NUM_WORKER ; i++) {
165         int ret;
166         
167         ret = fork();
168         switch (ret) {
169         case 0:
170             return (*workers[i % nworkers])(i);
171         case -1:
172             err (1, "fork");
173         }
174     }
175     i = NUM_WORKER;
176     while (i && wait (&ret)) {
177         i--;
178         if (ret)
179             err (1, "wait: %d", ret);
180     }
181     return 0;
182 }