[K/N] Fix fileCheckTest temporary files dir
This commit is contained in:
@@ -5827,7 +5827,7 @@ pluginTest("runtime_basic_init", "nopPlugin") {
|
||||
Task fileCheckTest(String name, Closure<FileCheckTest> configureClosure) {
|
||||
return project.tasks.create(name, FileCheckTest) { task ->
|
||||
task.configure(configureClosure)
|
||||
task.llvmIr = project.file("$testOutputFileCheck/$name/out.ll")
|
||||
task.llvmIr = project.file("$testOutputFileCheck/$name/$target/out.ll")
|
||||
if (task.enabled) {
|
||||
konanArtifacts {
|
||||
def lib = task.interop
|
||||
@@ -5843,7 +5843,7 @@ Task fileCheckTest(String name, Closure<FileCheckTest> configureClosure) {
|
||||
srcFiles task.annotatedSource
|
||||
baseDir "$testOutputFileCheck/$name"
|
||||
extraOpts project.globalTestArgs
|
||||
extraOpts "-Xtemporary-files-dir=$testOutputFileCheck/$name", "-Xsave-llvm-ir"
|
||||
extraOpts "-Xtemporary-files-dir=$testOutputFileCheck/$name/$target", "-Xsave-llvm-ir"
|
||||
if (lib != null) {
|
||||
libraries {
|
||||
artifact lib
|
||||
@@ -5856,7 +5856,7 @@ Task fileCheckTest(String name, Closure<FileCheckTest> configureClosure) {
|
||||
srcFiles task.annotatedSource
|
||||
baseDir "$testOutputFileCheck/$name"
|
||||
extraOpts project.globalTestArgs
|
||||
extraOpts "-Xtemporary-files-dir=$testOutputFileCheck/$name", "-Xsave-llvm-ir", "-Xmeaningful-bridge-names"
|
||||
extraOpts "-Xtemporary-files-dir=$testOutputFileCheck/$name/$target", "-Xsave-llvm-ir", "-Xmeaningful-bridge-names"
|
||||
if (lib != null) {
|
||||
libraries {
|
||||
artifact lib
|
||||
|
||||
Reference in New Issue
Block a user