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,18 @@
import org.jetbrains.kotlin.*
task codegen_blackbox_annotations_annotatedLambda_funExpression (type: RunExternalTest) {
source = "codegen/blackbox/annotations/annotatedLambda/funExpression.kt"
}
task codegen_blackbox_annotations_annotatedLambda_lambda (type: RunExternalTest) {
source = "codegen/blackbox/annotations/annotatedLambda/lambda.kt"
}
task codegen_blackbox_annotations_annotatedLambda_samFunExpression (type: RunExternalTest) {
source = "codegen/blackbox/annotations/annotatedLambda/samFunExpression.kt"
}
task codegen_blackbox_annotations_annotatedLambda_samLambda (type: RunExternalTest) {
source = "codegen/blackbox/annotations/annotatedLambda/samLambda.kt"
}
@@ -0,0 +1,74 @@
import org.jetbrains.kotlin.*
task codegen_blackbox_annotations_annotatedEnumEntry (type: RunExternalTest) {
source = "codegen/blackbox/annotations/annotatedEnumEntry.kt"
}
task codegen_blackbox_annotations_annotatedObjectLiteral (type: RunExternalTest) {
source = "codegen/blackbox/annotations/annotatedObjectLiteral.kt"
}
task codegen_blackbox_annotations_annotationsOnDefault (type: RunExternalTest) {
source = "codegen/blackbox/annotations/annotationsOnDefault.kt"
}
task codegen_blackbox_annotations_annotationsOnTypeAliases (type: RunExternalTest) {
source = "codegen/blackbox/annotations/annotationsOnTypeAliases.kt"
}
task codegen_blackbox_annotations_annotationWithKotlinProperty (type: RunExternalTest) {
source = "codegen/blackbox/annotations/annotationWithKotlinProperty.kt"
}
task codegen_blackbox_annotations_annotationWithKotlinPropertyFromInterfaceCompanion (type: RunExternalTest) {
source = "codegen/blackbox/annotations/annotationWithKotlinPropertyFromInterfaceCompanion.kt"
}
task codegen_blackbox_annotations_defaultParameterValues (type: RunExternalTest) {
source = "codegen/blackbox/annotations/defaultParameterValues.kt"
}
task codegen_blackbox_annotations_delegatedPropertySetter (type: RunExternalTest) {
source = "codegen/blackbox/annotations/delegatedPropertySetter.kt"
}
task codegen_blackbox_annotations_fileClassWithFileAnnotation (type: RunExternalTest) {
source = "codegen/blackbox/annotations/fileClassWithFileAnnotation.kt"
}
task codegen_blackbox_annotations_jvmAnnotationFlags (type: RunExternalTest) {
source = "codegen/blackbox/annotations/jvmAnnotationFlags.kt"
}
task codegen_blackbox_annotations_kotlinPropertyFromClassObjectAsParameter (type: RunExternalTest) {
source = "codegen/blackbox/annotations/kotlinPropertyFromClassObjectAsParameter.kt"
}
task codegen_blackbox_annotations_kotlinTopLevelPropertyAsParameter (type: RunExternalTest) {
source = "codegen/blackbox/annotations/kotlinTopLevelPropertyAsParameter.kt"
}
task codegen_blackbox_annotations_kt10136 (type: RunExternalTest) {
source = "codegen/blackbox/annotations/kt10136.kt"
}
task codegen_blackbox_annotations_nestedClassPropertyAsParameter (type: RunExternalTest) {
source = "codegen/blackbox/annotations/nestedClassPropertyAsParameter.kt"
}
task codegen_blackbox_annotations_parameterWithPrimitiveType (type: RunExternalTest) {
source = "codegen/blackbox/annotations/parameterWithPrimitiveType.kt"
}
task codegen_blackbox_annotations_propertyWithPropertyInInitializerAsParameter (type: RunExternalTest) {
source = "codegen/blackbox/annotations/propertyWithPropertyInInitializerAsParameter.kt"
}
task codegen_blackbox_annotations_resolveWithLowPriorityAnnotation (type: RunExternalTest) {
source = "codegen/blackbox/annotations/resolveWithLowPriorityAnnotation.kt"
}
task codegen_blackbox_annotations_varargInAnnotationParameter (type: RunExternalTest) {
source = "codegen/blackbox/annotations/varargInAnnotationParameter.kt"
}