X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Fstring%2Ftest%2Frun.c;h=f68e7ec56c5c886293be9b5f8e4c086e6076ebfb;hb=fe35ee039b64d8a585a9766b293b1393b4f8c787;hp=02403d24511300a68f05d182d68fa98f66a6503e;hpb=d2c982b37f3c4373e99e7c60c19d048de02b5919;p=ccan diff --git a/ccan/string/test/run.c b/ccan/string/test/run.c index 02403d24..f68e7ec5 100644 --- a/ccan/string/test/run.c +++ b/ccan/string/test/run.c @@ -27,6 +27,8 @@ int main(int argc, char *argv[]) char **split, *str; void *ctx; char *strings[NUM_SUBSTRINGS * NUM_SUBSTRINGS]; + int length; + struct stat st; n = 0; for (i = 0; i < NUM_SUBSTRINGS; i++) { @@ -115,7 +117,16 @@ int main(int argc, char *argv[]) ok1(talloc_parent(str) == ctx); talloc_free(ctx); - - + str = grab_file(NULL, "ccan/string/test/run-grab.c"); + split = strsplit(NULL, str, "\n", NULL); + length = strlen(split[0]); + ok1(streq(split[0], "/* This is test for grab_file() function */")); + for(i = 1; split[i]; i++) + length += strlen(split[i]); + ok1(streq(split[i-1], "/* End of grab_file() test */")); + if (stat("ccan/string/test/run-grab.c", &st) != 0) + err(1, "Could not stat self"); + ok1(st.st_size == length); + return exit_status(); }