From f4d31f479f423220053e3a5f79541c7f2230a957 Mon Sep 17 00:00:00 2001 From: Ilya Matveev Date: Thu, 16 Nov 2017 16:56:01 +0700 Subject: [PATCH] build: Fix execution of Ring benchmark --- performance/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/performance/build.gradle b/performance/build.gradle index d4c9cabc8a4..86e5e386429 100644 --- a/performance/build.gradle +++ b/performance/build.gradle @@ -75,7 +75,7 @@ private void dumpReport(String name, ByteArrayOutputStream output) { task konanRun(type: Exec) { def output = new ByteArrayOutputStream() - commandLine project.file("build/konan/bin/Ring.${gradle.startParameter.projectProperties.exe_suffix}").absolutePath, "$ringWarmup", "$iterations" + commandLine konanArtifacts.Ring.getByTarget('host').artifact.absolutePath, "$ringWarmup", "$iterations" standardOutput = output doLast { dumpReport('konanReport', output)