backend/tests: Added autogenerated tasks for external tests
This commit is contained in:
@@ -0,0 +1,82 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_casts_as (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/as.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_asForConstants (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/asForConstants.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_asSafe (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/asSafe.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_asSafeFail (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/asSafeFail.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_asSafeForConstants (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/asSafeForConstants.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_asUnit (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/asUnit.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_asWithGeneric (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/asWithGeneric.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_castGenericNull (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/castGenericNull.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_intersectionTypeMultipleBounds (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/intersectionTypeMultipleBounds.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_intersectionTypeMultipleBoundsImplicitReceiver (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/intersectionTypeMultipleBoundsImplicitReceiver.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_intersectionTypeSmartcast (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/intersectionTypeSmartcast.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_intersectionTypeWithMultipleBoundsAsReceiver (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/intersectionTypeWithMultipleBoundsAsReceiver.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_intersectionTypeWithoutGenericsAsReceiver (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/intersectionTypeWithoutGenericsAsReceiver.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_is (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/is.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_lambdaToUnitCast (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/lambdaToUnitCast.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_notIs (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/notIs.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_unitAsAny (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/unitAsAny.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_unitAsInt (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/unitAsInt.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_unitAsSafeAny (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/unitAsSafeAny.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_unitNullableCast (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/unitNullableCast.kt"
|
||||
}
|
||||
|
||||
+54
@@ -0,0 +1,54 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_casts_functions_asFunKBig (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/functions/asFunKBig.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_functions_asFunKSmall (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/functions/asFunKSmall.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_functions_isFunKBig (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/functions/isFunKBig.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_functions_isFunKSmall (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/functions/isFunKSmall.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_functions_javaTypeIsFunK (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/functions/javaTypeIsFunK.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_functions_reifiedAsFunKBig (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/functions/reifiedAsFunKBig.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_functions_reifiedAsFunKSmall (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/functions/reifiedAsFunKSmall.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_functions_reifiedIsFunKBig (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/functions/reifiedIsFunKBig.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_functions_reifiedIsFunKSmall (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/functions/reifiedIsFunKSmall.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_functions_reifiedSafeAsFunKBig (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/functions/reifiedSafeAsFunKBig.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_functions_reifiedSafeAsFunKSmall (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/functions/reifiedSafeAsFunKSmall.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_functions_safeAsFunKBig (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/functions/safeAsFunKBig.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_functions_safeAsFunKSmall (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/functions/safeAsFunKSmall.kt"
|
||||
}
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_casts_literalExpressionAsGenericArgument_binaryExpressionCast (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/literalExpressionAsGenericArgument/binaryExpressionCast.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_literalExpressionAsGenericArgument_javaBox (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/literalExpressionAsGenericArgument/javaBox.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_literalExpressionAsGenericArgument_labeledExpressionCast (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/literalExpressionAsGenericArgument/labeledExpressionCast.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_literalExpressionAsGenericArgument_parenthesizedExpressionCast (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/literalExpressionAsGenericArgument/parenthesizedExpressionCast.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_literalExpressionAsGenericArgument_superConstructor (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/literalExpressionAsGenericArgument/superConstructor.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_literalExpressionAsGenericArgument_unaryExpressionCast (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/literalExpressionAsGenericArgument/unaryExpressionCast.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_literalExpressionAsGenericArgument_vararg (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/literalExpressionAsGenericArgument/vararg.kt"
|
||||
}
|
||||
|
||||
Vendored
+34
@@ -0,0 +1,34 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_casts_mutableCollections_asWithMutable (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/mutableCollections/asWithMutable.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_mutableCollections_isWithMutable (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/mutableCollections/isWithMutable.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_mutableCollections_mutabilityMarkerInterfaces (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/mutableCollections/mutabilityMarkerInterfaces.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_mutableCollections_reifiedAsWithMutable (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/mutableCollections/reifiedAsWithMutable.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_mutableCollections_reifiedIsWithMutable (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/mutableCollections/reifiedIsWithMutable.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_mutableCollections_reifiedSafeAsWithMutable (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/mutableCollections/reifiedSafeAsWithMutable.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_mutableCollections_safeAsWithMutable (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/mutableCollections/safeAsWithMutable.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_casts_mutableCollections_weirdMutableCasts (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/casts/mutableCollections/weirdMutableCasts.kt"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user