]> git.ozlabs.org Git - ccan/blob - tools/ccanlint/tests/main_header_compiles.c
c20d73cae0fcde2327268a33176a9e98163cc7e5
[ccan] / tools / ccanlint / tests / main_header_compiles.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 struct ccan_file *main_header(struct manifest *m)
25 {
26         struct ccan_file *f;
27
28         list_for_each(&m->h_files, f, list) {
29                 if (strstarts(f->name, m->basename)
30                     && strlen(f->name) == strlen(m->basename) + 2)
31                         return f;
32         }
33         /* Should not happen: we depend on has_main_header */
34         abort();
35 }
36
37 static void check_includes_build(struct manifest *m,
38                                  unsigned int *timeleft, struct score *score)
39 {
40         char *contents;
41         char *tmpsrc, *tmpobj, *cmdout;
42         int fd;
43         struct ccan_file *mainh = main_header(m);
44
45         tmpsrc = temp_file(m, "-included.c", mainh->fullname);
46         tmpobj = temp_file(m, ".o", tmpsrc);
47
48         fd = open(tmpsrc, O_WRONLY | O_CREAT | O_EXCL, 0600);
49         if (fd < 0)
50                 err(1, "Creating temporary file %s", tmpsrc);
51
52         contents = talloc_asprintf(tmpsrc, "#include <ccan/%s/%s.h>\n",
53                                    m->modname, m->basename);
54         if (write(fd, contents, strlen(contents)) != strlen(contents))
55                 err(1, "writing to temporary file %s", tmpsrc);
56         close(fd);
57
58         if (compile_object(score, tmpsrc, ccan_dir, compiler, cflags,
59                            tmpobj, &cmdout)) {
60                 score->pass = true;
61                 score->score = score->total;
62         } else {
63                 score->error = talloc_asprintf(score,
64                                        "#include of the main header file:\n%s",
65                                        cmdout);
66         }
67 }
68
69 struct ccanlint main_header_compiles = {
70         .key = "main_header_compiles",
71         .name = "Modules main header compiles",
72         .check = check_includes_build,
73         .can_run = can_build,
74         .needs = "depends_exist main_header_exists"
75 };
76
77 REGISTER_TEST(main_header_compiles);