X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fgrab_file%2Ftest%2Frun-grab.c;h=060607d54fbd9dcb21fb85a4082dd689a0a82d20;hp=7df663c9ae11f8634d6eae26b8abd49bb853664f;hb=a209c6d5be264dc0fc64cea6f9e750d44deaf157;hpb=868412b72b7c83d1fec52d0f71355bc15de2600e diff --git a/ccan/grab_file/test/run-grab.c b/ccan/grab_file/test/run-grab.c index 7df663c9..060607d5 100644 --- a/ccan/grab_file/test/run-grab.c +++ b/ccan/grab_file/test/run-grab.c @@ -1,14 +1,13 @@ /* This is test for grab_file() function */ -#include "grab_file/grab_file.h" -#include -#include -#include -#include -#include "grab_file/grab_file.c" -#include "tap/tap.h" -#include "str_talloc/str_talloc.h" -#include "str/str.h" +#include +#include +#include +#include +#include +#include +#include +#include int main(int argc, char *argv[]) @@ -18,16 +17,19 @@ main(int argc, char *argv[]) int length; struct stat st; - str = grab_file(NULL, "ccan/string/test/run-grab.c", NULL); - split = strsplit(NULL, str, "\n", NULL); + str = grab_file(NULL, "test/run-grab.c", NULL); + split = strsplit(str, str, "\n"); length = strlen(split[0]); - ok1(streq(split[0], "/* This is test for grab_file() function")); + ok1(!strcmp(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(!strcmp(split[i-1], "/* End of grab_file() test */")); + if (stat("test/run-grab.c", &st) != 0) + /* FIXME: ditto */ + if (stat("ccan/grab_file/test/run-grab.c", &st) != 0) + err(1, "Could not stat self"); ok1(st.st_size == length + i); + talloc_free(str); return 0; }