Improve python3 arguments for bitcode-build-tool

The script features `-B` in `#!`
This commit is contained in:
Svyatoslav Scherbina
2020-04-13 19:44:47 +03:00
committed by SvyatoslavScherbina
parent 63ee5470c5
commit d182b098a6
@@ -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))
}
}