]> git.ozlabs.org Git - ccan/blob - tools/ccanlint/tests/build.c
ccanlint: compile and run tests.
[ccan] / tools / ccanlint / tests / build.c
1 #include <tools/ccanlint/ccanlint.h>
2 #include <tools/tools.h>
3 #include <ccan/talloc/talloc.h>
4 #include <ccan/str/str.h>
5 #include <sys/types.h>
6 #include <sys/stat.h>
7 #include <fcntl.h>
8 #include <unistd.h>
9 #include <limits.h>
10 #include <errno.h>
11 #include <stdlib.h>
12 #include <stdio.h>
13 #include <err.h>
14 #include <string.h>
15 #include <ctype.h>
16
17 static const char *can_build(struct manifest *m)
18 {
19         if (safe_mode)
20                 return "Safe mode enabled";
21         return NULL;
22 }
23
24 static char *obj_list(const struct manifest *m)
25 {
26         char *list = talloc_strdup(m, "");
27         struct ccan_file *i;
28
29         /* Object from all the C files. */
30         list_for_each(&m->c_files, i, list)
31                 list = talloc_asprintf_append(list, "%.*s.o ",
32                                               strlen(i->name) - 2, i->name);
33
34         return list;
35 }
36
37 /* We leave this object file around after ccanlint runs, all built. */
38 static void *do_build(struct manifest *m)
39 {
40         if (list_empty(&m->c_files)) {
41                 /* No files?  No score, but we "pass". */
42                 build.total_score = 0;
43                 return NULL;
44         }
45         return run_command(m, "ld -r -o ../%s.o %s", m->basename, obj_list(m));
46 }
47
48 static const char *describe_build(struct manifest *m, void *check_result)
49 {
50         return talloc_asprintf(check_result, 
51                                "The object file for the module didn't build:\n"
52                                "%s", (char *)check_result);
53 }
54
55 struct ccanlint build = {
56         .name = "Module can be built",
57         .total_score = 1,
58         .check = do_build,
59         .describe = describe_build,
60         .can_run = can_build,
61 };
62
63 REGISTER_TEST(build, &depends_built, NULL);