]> git.ozlabs.org Git - ccan/blob - ccan/grab_file/test/run-grab.c
strsplit: remove nump argument
[ccan] / ccan / grab_file / test / run-grab.c
1 /* This is test for grab_file() function
2  */
3 #include <ccan/grab_file/grab_file.h>
4 #include <stdlib.h>
5 #include <stdio.h>
6 #include <err.h>
7 #include <sys/stat.h>
8 #include <ccan/grab_file/grab_file.c>
9 #include <ccan/tap/tap.h>
10 #include <ccan/str_talloc/str_talloc.h>
11
12 int 
13 main(int argc, char *argv[])
14 {
15         unsigned int    i;
16         char            **split, *str;
17         int             length;
18         struct          stat st;
19
20         str = grab_file(NULL, "test/run-grab.c", NULL);
21         split = strsplit(NULL, str, "\n");
22         length = strlen(split[0]);
23         ok1(!strcmp(split[0], "/* This is test for grab_file() function"));
24         for (i = 1; split[i]; i++)      
25                 length += strlen(split[i]);
26         ok1(!strcmp(split[i-1], "/* End of grab_file() test */"));
27         if (stat("test/run-grab.c", &st) != 0) 
28                 /* FIXME: ditto */
29                 if (stat("ccan/grab_file/test/run-grab.c", &st) != 0) 
30                         err(1, "Could not stat self");
31         ok1(st.st_size == length + i);
32         
33         return 0;
34 }
35
36 /* End of grab_file() test */