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,46 @@
import org.jetbrains.kotlin.*
task codegen_blackbox_reflection_annotations_annotationRetentionAnnotation (type: RunExternalTest) {
source = "codegen/blackbox/reflection/annotations/annotationRetentionAnnotation.kt"
}
task codegen_blackbox_reflection_annotations_annotationsOnJavaMembers (type: RunExternalTest) {
source = "codegen/blackbox/reflection/annotations/annotationsOnJavaMembers.kt"
}
task codegen_blackbox_reflection_annotations_findAnnotation (type: RunExternalTest) {
source = "codegen/blackbox/reflection/annotations/findAnnotation.kt"
}
task codegen_blackbox_reflection_annotations_propertyAccessors (type: RunExternalTest) {
source = "codegen/blackbox/reflection/annotations/propertyAccessors.kt"
}
task codegen_blackbox_reflection_annotations_propertyWithoutBackingField (type: RunExternalTest) {
source = "codegen/blackbox/reflection/annotations/propertyWithoutBackingField.kt"
}
task codegen_blackbox_reflection_annotations_retentions (type: RunExternalTest) {
source = "codegen/blackbox/reflection/annotations/retentions.kt"
}
task codegen_blackbox_reflection_annotations_simpleClassAnnotation (type: RunExternalTest) {
source = "codegen/blackbox/reflection/annotations/simpleClassAnnotation.kt"
}
task codegen_blackbox_reflection_annotations_simpleConstructorAnnotation (type: RunExternalTest) {
source = "codegen/blackbox/reflection/annotations/simpleConstructorAnnotation.kt"
}
task codegen_blackbox_reflection_annotations_simpleFunAnnotation (type: RunExternalTest) {
source = "codegen/blackbox/reflection/annotations/simpleFunAnnotation.kt"
}
task codegen_blackbox_reflection_annotations_simpleParamAnnotation (type: RunExternalTest) {
source = "codegen/blackbox/reflection/annotations/simpleParamAnnotation.kt"
}
task codegen_blackbox_reflection_annotations_simpleValAnnotation (type: RunExternalTest) {
source = "codegen/blackbox/reflection/annotations/simpleValAnnotation.kt"
}