71 lines
2.2 KiB
Groovy
71 lines
2.2 KiB
Groovy
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"
|
|
}
|
|
|