]> git.ozlabs.org Git - ccan/blob - tools/ccanlint/compulsory_tests/build.c
ccanlint: fix directory issues properly.
[ccan] / tools / ccanlint / compulsory_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         /* Objects from all the C files. */
30         list_for_each(&m->c_files, i, list)
31                 list = talloc_asprintf_append(list, "%s ", i->compiled);
32
33         return list;
34 }
35
36 static void *do_build(struct manifest *m)
37 {
38         char *filename, *err;
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         filename = link_objects(m, obj_list(m), &err);
46         if (filename) {
47                 char *realname = talloc_asprintf(m, "%s.o", m->dir);
48                 /* We leave this object file around, all built. */
49                 if (rename(filename, realname) != 0)
50                         return talloc_asprintf(m, "Failed to rename %s to %s",
51                                                filename, realname);
52                 return NULL;
53         }
54         return err;
55 }
56
57 static const char *describe_build(struct manifest *m, void *check_result)
58 {
59         return talloc_asprintf(check_result, 
60                                "The object file for the module didn't build:\n"
61                                "%s", (char *)check_result);
62 }
63
64 struct ccanlint build = {
65         .name = "Module can be built",
66         .total_score = 1,
67         .check = do_build,
68         .describe = describe_build,
69         .can_run = can_build,
70 };
71
72 REGISTER_TEST(build, &depends_built, NULL);