From: Jeremy Kerr Date: Thu, 26 Sep 2013 07:45:15 +0000 (+0800) Subject: test/parser: Enable logging to stdout X-Git-Tag: v1.0.0~411 X-Git-Url: https://git.ozlabs.org/?p=petitboot;a=commitdiff_plain;h=300859ca50c0ea5d9c17d27fd3e3538ce966e08a test/parser: Enable logging to stdout We may as well show the logs while testing. Signed-off-by: Jeremy Kerr --- diff --git a/test/parser/main.c b/test/parser/main.c index 0fdafb4..25930a5 100644 --- a/test/parser/main.c +++ b/test/parser/main.c @@ -1,5 +1,6 @@ #include +#include #include "parser-test.h" @@ -10,6 +11,7 @@ extern void run_test(struct parser_test *test); int main(void) { struct parser_test *test; + pb_log_init(stdout); test = test_init();