X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fgrab_file%2Ftest%2Frun-grab.c;h=b3c18e5a4db20369c42096c00734b1e4ce098a9c;hp=357a88b328d39d2fd59d5698886cfafb94f0f1cf;hb=85a33135890965218010b79c89e4d3f4905727e3;hpb=0c532d80a73cae44360595c762dddefcd7e0a4ec diff --git a/ccan/grab_file/test/run-grab.c b/ccan/grab_file/test/run-grab.c index 357a88b3..b3c18e5a 100644 --- a/ccan/grab_file/test/run-grab.c +++ b/ccan/grab_file/test/run-grab.c @@ -1,14 +1,14 @@ /* 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 +#include int main(int argc, char *argv[]) @@ -19,6 +19,9 @@ main(int argc, char *argv[]) struct stat st; str = grab_file(NULL, "test/run-grab.c", NULL); + /* FIXME: run_tests runs us from top level dir. Kill this */ + if (!str) + str = grab_file(NULL, "ccan/grab_file/test/run-grab.c", NULL); split = strsplit(NULL, str, "\n", NULL); length = strlen(split[0]); ok1(streq(split[0], "/* This is test for grab_file() function")); @@ -26,7 +29,9 @@ main(int argc, char *argv[]) length += strlen(split[i]); ok1(streq(split[i-1], "/* End of grab_file() test */")); if (stat("test/run-grab.c", &st) != 0) - err(1, "Could not stat self"); + /* 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); return 0;