X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan_tools%2Frun_tests.c;h=c7526449b64e407d3dfc8353ab3d20d1c36607ac;hp=642df2eb3c149a9522271a2158007f163770faa3;hb=ee4a263c10328674572e512a9b73ae74bf54447e;hpb=36ef9b2c28bdabc51aac41f1df34aaceb8481d5c diff --git a/ccan_tools/run_tests.c b/ccan_tools/run_tests.c index 642df2eb..c7526449 100644 --- a/ccan_tools/run_tests.c +++ b/ccan_tools/run_tests.c @@ -4,11 +4,11 @@ #include #include #include -#include "libtap/src/tap.h" +#include "tap/tap.h" #include "talloc/talloc.h" #include "../string/string.h" -#define CFLAGS "-O3 -Wall -Wundef -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -I. -Iccan_tools/libtap/src/" +#define CFLAGS "-O3 -Wall -Wundef -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -I." /* FIXME: Use build bug later. */ #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0])) @@ -56,7 +56,7 @@ static char *obj_list(void) list = talloc_asprintf_append(list, "%s ", i->name); /* FIXME */ - list = talloc_asprintf_append(list, "ccan_tools/libtap/src/tap.o"); + list = talloc_asprintf_append(list, "tap/tap.o"); return list; }