From d182b098a6be2a667276734cbcd0a1c21da7fc61 Mon Sep 17 00:00:00 2001 From: Svyatoslav Scherbina Date: Mon, 13 Apr 2020 19:44:47 +0300 Subject: [PATCH] Improve python3 arguments for bitcode-build-tool The script features `-B` in `#!` --- .../src/main/kotlin/org/jetbrains/kotlin/FrameworkTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-tools/src/main/kotlin/org/jetbrains/kotlin/FrameworkTest.kt b/build-tools/src/main/kotlin/org/jetbrains/kotlin/FrameworkTest.kt index 46ea4bccbb1..0720d374f8e 100644 --- a/build-tools/src/main/kotlin/org/jetbrains/kotlin/FrameworkTest.kt +++ b/build-tools/src/main/kotlin/org/jetbrains/kotlin/FrameworkTest.kt @@ -222,6 +222,6 @@ open class FrameworkTest : DefaultTask(), KonanTestExecutable { ?: error("Can't find python3") runTest(executorService = localExecutorService(project), testExecutable = python3, - args = listOf(bitcodeBuildTool, "--sdk", sdk, "-v", "-t", toolPath, frameworkBinary)) + args = listOf("-B", bitcodeBuildTool, "--sdk", sdk, "-v", "-t", toolPath, frameworkBinary)) } } \ No newline at end of file