From 5de3705f80e62b1fe88198f20ae01a21f612fb0f Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Sat, 16 Sep 2017 15:12:13 -0400 Subject: [PATCH] tests/lib/test_ctf_writer.c: open trace with `-o dummy` to make it faster MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Philippe Proulx Signed-off-by: Jérémie Galarneau --- tests/lib/test_ctf_writer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1