From 1f90f04deea4c7109f97289d2fe08bf13cf0f183 Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Thu, 6 Apr 2017 15:00:44 -0400 Subject: [PATCH] Fix: ctf writer test on Cygwin MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit In the ctf writer test we execl() some libtool wrappers that get confused when arg[0] is not the full path to the binary. Signed-off-by: Michael Jeanson Signed-off-by: Jérémie Galarneau --- tests/lib/test_ctf_writer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/lib/test_ctf_writer.c b/tests/lib/test_ctf_writer.c index 961df795..53613c91 100644 --- a/tests/lib/test_ctf_writer.c +++ b/tests/lib/test_ctf_writer.c @@ -94,7 +94,7 @@ void validate_metadata(char *parser_path, char *metadata_path) goto result; } - execl(parser_path, "ctf-parser-test", (char *) NULL); + execl(parser_path, parser_path, (char *) NULL); perror("# Could not launch the ctf metadata parser process"); exit(-1); } @@ -201,7 +201,7 @@ void validate_trace(char *parser_path, char *trace_path) goto result; } - execl(parser_path, "babeltrace", trace_path, (char *) NULL); + execl(parser_path, parser_path, trace_path, (char *) NULL); perror("# Could not launch the babeltrace process"); exit(-1); } -- 2.34.1