From 7df5d6a7f1dff1dd121724624f4ff639a2dad858 Mon Sep 17 00:00:00 2001 From: Craig Tiller <craig.tiller@gmail.com> Date: Fri, 15 May 2015 10:59:15 -0700 Subject: [PATCH] Use platform suffix api --- test/core/fling/fling_test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/core/fling/fling_test.c b/test/core/fling/fling_test.c index 489f3a385c..7c1643df6a 100644 --- a/test/core/fling/fling_test.c +++ b/test/core/fling/fling_test.c @@ -56,7 +56,7 @@ int main(int argc, char **argv) { strcpy(root, "."); } /* start the server */ - gpr_asprintf(&args[0], "%s/fling_server", root); + gpr_asprintf(&args[0], "%s/fling_server%s", root, gpr_subprocess_binary_extension()); args[1] = "--bind"; gpr_join_host_port(&args[2], "::", port); args[3] = "--no-secure"; @@ -65,7 +65,7 @@ int main(int argc, char **argv) { gpr_free(args[2]); /* start the client */ - gpr_asprintf(&args[0], "%s/fling_client", root); + gpr_asprintf(&args[0], "%s/fling_client%s", root, gpr_subprocess_binary_extension()); args[1] = "--target"; gpr_join_host_port(&args[2], "127.0.0.1", port); args[3] = "--scenario=ping-pong-request"; -- GitLab