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,70 @@
import org.jetbrains.kotlin.*
task codegen_blackbox_binaryOp_bitwiseOp (type: RunExternalTest) {
source = "codegen/blackbox/binaryOp/bitwiseOp.kt"
}
task codegen_blackbox_binaryOp_bitwiseOpAny (type: RunExternalTest) {
source = "codegen/blackbox/binaryOp/bitwiseOpAny.kt"
}
task codegen_blackbox_binaryOp_bitwiseOpNullable (type: RunExternalTest) {
source = "codegen/blackbox/binaryOp/bitwiseOpNullable.kt"
}
task codegen_blackbox_binaryOp_call (type: RunExternalTest) {
source = "codegen/blackbox/binaryOp/call.kt"
}
task codegen_blackbox_binaryOp_callAny (type: RunExternalTest) {
source = "codegen/blackbox/binaryOp/callAny.kt"
}
task codegen_blackbox_binaryOp_callNullable (type: RunExternalTest) {
source = "codegen/blackbox/binaryOp/callNullable.kt"
}
task codegen_blackbox_binaryOp_compareWithBoxedDouble (type: RunExternalTest) {
source = "codegen/blackbox/binaryOp/compareWithBoxedDouble.kt"
}
task codegen_blackbox_binaryOp_compareWithBoxedLong (type: RunExternalTest) {
source = "codegen/blackbox/binaryOp/compareWithBoxedLong.kt"
}
task codegen_blackbox_binaryOp_divisionByZero (type: RunExternalTest) {
source = "codegen/blackbox/binaryOp/divisionByZero.kt"
}
task codegen_blackbox_binaryOp_intrinsic (type: RunExternalTest) {
source = "codegen/blackbox/binaryOp/intrinsic.kt"
}
task codegen_blackbox_binaryOp_intrinsicAny (type: RunExternalTest) {
source = "codegen/blackbox/binaryOp/intrinsicAny.kt"
}
task codegen_blackbox_binaryOp_intrinsicNullable (type: RunExternalTest) {
source = "codegen/blackbox/binaryOp/intrinsicNullable.kt"
}
task codegen_blackbox_binaryOp_kt11163 (type: RunExternalTest) {
source = "codegen/blackbox/binaryOp/kt11163.kt"
}
task codegen_blackbox_binaryOp_kt6747_identityEquals (type: RunExternalTest) {
source = "codegen/blackbox/binaryOp/kt6747_identityEquals.kt"
}
task codegen_blackbox_binaryOp_overflowChar (type: RunExternalTest) {
source = "codegen/blackbox/binaryOp/overflowChar.kt"
}
task codegen_blackbox_binaryOp_overflowInt (type: RunExternalTest) {
source = "codegen/blackbox/binaryOp/overflowInt.kt"
}
task codegen_blackbox_binaryOp_overflowLong (type: RunExternalTest) {
source = "codegen/blackbox/binaryOp/overflowLong.kt"
}