From: Philippe Proulx Date: Sat, 16 Sep 2017 19:12:13 +0000 (-0400) Subject: tests/lib/test_ctf_writer.c: open trace with `-o dummy` to make it faster X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=commitdiff_plain;h=5de3705f80e62b1fe88198f20ae01a21f612fb0f tests/lib/test_ctf_writer.c: open trace with `-o dummy` to make it faster Signed-off-by: Philippe Proulx Signed-off-by: Jérémie Galarneau --- diff --git a/tests/lib/test_ctf_writer.c b/tests/lib/test_ctf_writer.c index 829d8adb..99783406 100644 --- a/tests/lib/test_ctf_writer.c +++ b/tests/lib/test_ctf_writer.c @@ -100,7 +100,7 @@ void validate_trace(char *parser_path, char *trace_path) int ret = 0; gchar *standard_error = NULL; gint exit_status; - char *argv[] = {parser_path, trace_path, NULL}; + char *argv[] = {parser_path, trace_path, "-o", "dummy", NULL}; if (!parser_path || !trace_path) { ret = -1;