]> git.ozlabs.org Git - ccan/blob - ccan_tools/run_tests.c
Avoid hacky recompilation of files to namespacize, use hacky parser
[ccan] / ccan_tools / run_tests.c
1 #include <err.h>
2 #include <stdio.h>
3 #include <sys/types.h>
4 #include <dirent.h>
5 #include <assert.h>
6 #include <unistd.h>
7 #include "libtap/src/tap.h"
8 #include "talloc/talloc.h"
9 #include "../string/string.h"
10
11 #define CFLAGS "-O3 -Wall -Wundef -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -I. -Iccan_tools/libtap/src/"
12
13 /* FIXME: Use build bug later. */
14 #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
15
16 static struct test *tests = NULL;
17 static struct obj *objs = NULL;
18 static int verbose;
19
20 struct test_type
21 {
22         const char *name;
23         void (*testfn)(struct test_type *t, const char *name);
24 };
25
26 struct test
27 {
28         struct test *next;
29         struct test_type *type;
30         char *name;
31 };
32
33 struct obj
34 {
35         struct obj *next;
36         char *name;
37 };
38
39 static char *output_name(const char *name)
40 {
41         char *ret;
42
43         assert(strends(name, ".c"));
44
45         ret = talloc_strdup(name, name);
46         ret[strlen(ret) - 2] = '\0';
47         return ret;
48 }
49
50 static char *obj_list(void)
51 {
52         char *list = talloc_strdup(objs, "");
53         struct obj *i;
54
55         for (i = objs; i; i = i->next)
56                 list = talloc_asprintf_append(list, "%s ", i->name);
57
58         /* FIXME */
59         list = talloc_asprintf_append(list, "ccan_tools/libtap/src/tap.o");
60         return list;
61 }
62
63 static void compile_objs(void)
64 {
65         struct obj *i;
66
67         for (i = objs; i; i = i->next) {
68                 char *cmd = talloc_asprintf(i, "gcc " CFLAGS " -o %s.o -c %s%s",
69                                             output_name(i->name), i->name,
70                                             verbose ? "" : "> /dev/null 2>&1");
71                 ok(system(cmd) == 0, "%s", cmd);
72         }
73 }
74
75 static void cleanup_objs(void)
76 {
77         struct obj *i;
78
79         for (i = objs; i; i = i->next)
80                 unlink(talloc_asprintf(i, "%s.o", output_name(i->name)));
81 }
82
83 static void add_test(const char *testdir, const char *name, struct test_type *t)
84 {
85         struct test *test = talloc(testdir, struct test);
86
87         test->next = tests;
88         test->type = t;
89         test->name = talloc_asprintf(test, "%s/%s", testdir, name);
90         tests = test;
91 }
92
93 static void add_obj(const char *testdir, const char *name)
94 {
95         struct obj *obj = talloc(testdir, struct obj);
96
97         obj->next = objs;
98         obj->name = talloc_asprintf(obj, "%s/%s", testdir, name);
99         objs = obj;
100 }
101
102 static int build(const char *name, int fail)
103 {
104         const char *cmd;
105         int ret;
106
107         cmd = talloc_asprintf(name, "gcc " CFLAGS " %s -o %s %s %s%s",
108                               fail ? "-DFAIL" : "",
109                               output_name(name), name, obj_list(),
110                               verbose ? "" : "> /dev/null 2>&1");
111
112         if (verbose)
113                 fprintf(stderr, "Running %s\n", cmd);
114
115         ret = system(cmd);
116         if (ret == -1)
117                 diag("cmd '%s' failed to execute", cmd);
118
119         return ret;
120 }
121
122 static void compile_ok(struct test_type *t, const char *name)
123 {
124         ok(build(name, 0) == 0, "%s %s", t->name, name);
125 }
126
127 static void compile_fail(struct test_type *t, const char *name)
128 {
129         if (build(name, 0) != 0)
130                 fail("non-FAIL build %s", name);
131         else
132                 ok(build(name, 1) > 0, "%s %s", t->name, name);
133 }
134
135 static void run(const char *name)
136 {
137         if (system(output_name(name)) == -1)
138                 fail("running %s had error %m", name);
139 }
140
141 static void cleanup(const char *name)
142 {
143         unlink(output_name(name));
144 }
145
146 static struct test_type test_types[] = {
147         { "compile_ok", compile_ok },
148         { "compile_fail", compile_fail },
149         { "run", compile_ok },
150 };
151
152 int main(int argc, char *argv[])
153 {
154         DIR *dir;
155         struct dirent *d;
156         char *testdir;
157         struct test *test;
158         unsigned int num_tests = 0, num_objs = 0;
159
160         if (argc > 1 && streq(argv[1], "--verbose")) {
161                 verbose = 1;
162                 argc--;
163                 argv++;
164         }
165
166         if (argc != 2)
167                 errx(1, "Usage: run_tests [--verbose] <dir>");
168
169         testdir = talloc_asprintf(NULL, "%s/test", argv[1]);
170         dir = opendir(testdir);
171         if (!dir)
172                 err(1, "Opening '%s'", testdir);
173
174         while ((d = readdir(dir)) != NULL) {
175                 unsigned int i;
176                 if (d->d_name[0] == '.' || !strends(d->d_name, ".c"))
177                         continue;
178
179                 for (i = 0; i < ARRAY_SIZE(test_types); i++) {
180                         if (strstarts(d->d_name, test_types[i].name)) {
181                                 add_test(testdir, d->d_name, &test_types[i]);
182                                 num_tests++;
183                                 break;
184                         }
185                 }
186                 if (i == ARRAY_SIZE(test_types)) {
187                         add_obj(testdir, d->d_name);
188                         num_objs++;
189                 }
190         }
191
192         plan_tests(num_tests + num_objs);
193         /* First all the extra object compilations. */
194         compile_objs();
195
196         /* Do all the test compilations. */
197         for (test = tests; test; test = test->next)
198                 test->type->testfn(test->type, test->name);
199
200         cleanup_objs();
201
202         /* Now run all the ones which wanted to run. */
203         for (test = tests; test; test = test->next) {
204                 if (streq(test->type->name, "run"))
205                         run(test->name);
206                 cleanup(test->name);
207         }
208
209         exit(exit_status());
210 }