backend/tests: Added autogenerated tasks for external tests

This commit is contained in:
Ilya Matveev
2017-01-17 19:01:19 +03:00
parent fd44baf2c0
commit ee58c7ee5f
209 changed files with 11011 additions and 0 deletions
@@ -0,0 +1,30 @@
import org.jetbrains.kotlin.*
task codegen_blackbox_toArray_kt3177_toTypedArray (type: RunExternalTest) {
source = "codegen/blackbox/toArray/kt3177-toTypedArray.kt"
}
task codegen_blackbox_toArray_returnToTypedArray (type: RunExternalTest) {
source = "codegen/blackbox/toArray/returnToTypedArray.kt"
}
task codegen_blackbox_toArray_toArray (type: RunExternalTest) {
source = "codegen/blackbox/toArray/toArray.kt"
}
task codegen_blackbox_toArray_toArrayAlreadyPresent (type: RunExternalTest) {
source = "codegen/blackbox/toArray/toArrayAlreadyPresent.kt"
}
task codegen_blackbox_toArray_toArrayShouldBePublic (type: RunExternalTest) {
source = "codegen/blackbox/toArray/toArrayShouldBePublic.kt"
}
task codegen_blackbox_toArray_toArrayShouldBePublicWithJava (type: RunExternalTest) {
source = "codegen/blackbox/toArray/toArrayShouldBePublicWithJava.kt"
}
task codegen_blackbox_toArray_toTypedArray (type: RunExternalTest) {
source = "codegen/blackbox/toArray/toTypedArray.kt"
}