diff options
Diffstat (limited to 'test/parser/utils.c')
-rw-r--r-- | test/parser/utils.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/parser/utils.c b/test/parser/utils.c index 9d40d2b..8900bd7 100644 --- a/test/parser/utils.c +++ b/test/parser/utils.c @@ -310,7 +310,8 @@ int parser_replace_file(struct discover_context *ctx, } struct load_url_result *load_url_async(void *ctx, struct pb_url *url, - load_url_complete async_cb, void *async_data) + load_url_complete async_cb, void *async_data, + waiter_cb stdout_cb, void *stdout_data) { struct conf_context *conf = async_data; struct parser_test *test = conf->dc->test_data; @@ -320,6 +321,10 @@ struct load_url_result *load_url_async(void *ctx, struct pb_url *url, struct test_file *file; int fd; + /* Ignore the stdout callback for tests */ + (void)stdout_cb; + (void)stdout_data; + fd = mkstemp(tmp); if (fd < 0) |