From d5ddc5902d70feb0df6cce4dc22487d6ea48e1bc Mon Sep 17 00:00:00 2001 From: Ilya Matveev Date: Thu, 1 Mar 2018 14:16:57 +0300 Subject: [PATCH] [tests] Fix jsinterop test --- backend.native/tests/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend.native/tests/build.gradle b/backend.native/tests/build.gradle index 7efecd8c944..dcfff06c98b 100644 --- a/backend.native/tests/build.gradle +++ b/backend.native/tests/build.gradle @@ -2519,7 +2519,7 @@ if (isMac()) { task jsinterop_math(type: RunStandaloneKonanTest) { doFirst { def jsinteropScript = isWindows() ? "jsinterop.bat" : "jsinterop" - def jsinterop = "$distDir/bin/$jsinteropScript" + def jsinterop = "$dist/bin/$jsinteropScript" // TODO: We probably need a NativeInteropPlugin for jsinterop? "$jsinterop -pkg kotlinx.interop.wasm.math -o $buildDir/jsmath -target wasm32".execute().waitFor()