backend/tests: Added autogenerated tasks for external tests
This commit is contained in:
+94
@@ -0,0 +1,94 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_abstractMember (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/abstractMember.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_Collection (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/Collection.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_customReadOnlyIterator (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/customReadOnlyIterator.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_delegationToArrayList (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/delegationToArrayList.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_immutableRemove (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/immutableRemove.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_implementationInTrait (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/implementationInTrait.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_inheritedImplementations (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/inheritedImplementations.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_Iterator (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/Iterator.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_IteratorWithRemove (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/IteratorWithRemove.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_List (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/List.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_ListIterator (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/ListIterator.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_ListWithAllImplementations (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/ListWithAllImplementations.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_ListWithAllInheritedImplementations (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/ListWithAllInheritedImplementations.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_manyTypeParametersWithUpperBounds (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/manyTypeParametersWithUpperBounds.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_Map (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/Map.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_MapEntry (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/MapEntry.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_MapEntryWithSetValue (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/MapEntryWithSetValue.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_MapWithAllImplementations (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/MapWithAllImplementations.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_nonTrivialSubstitution (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/nonTrivialSubstitution.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_nonTrivialUpperBound (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/nonTrivialUpperBound.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_substitutedIterable (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/substitutedIterable.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_SubstitutedList (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/SubstitutedList.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_substitutedListWithExtraSuperInterface (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/substitutedListWithExtraSuperInterface.kt"
|
||||
}
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_extendJavaCollections_abstractList (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/extendJavaCollections/abstractList.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_extendJavaCollections_abstractMap (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/extendJavaCollections/abstractMap.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_extendJavaCollections_abstractSet (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/extendJavaCollections/abstractSet.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_extendJavaCollections_arrayList (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/extendJavaCollections/arrayList.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_extendJavaCollections_hashMap (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/extendJavaCollections/hashMap.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_extendJavaCollections_hashSet (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/extendJavaCollections/hashSet.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_builtinStubMethods_extendJavaCollections_mapEntry (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/builtinStubMethods/extendJavaCollections/mapEntry.kt"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user