backend/tests: Added autogenerated tasks for external tests
This commit is contained in:
+6
@@ -0,0 +1,6 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_javaInterop_lambdaInstanceOf (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/javaInterop/lambdaInstanceOf.kt"
|
||||
}
|
||||
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_javaInterop_generics_allWildcardsOnClass (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/javaInterop/generics/allWildcardsOnClass.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_javaInterop_generics_covariantOverrideWithDeclarationSiteProjection (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/javaInterop/generics/covariantOverrideWithDeclarationSiteProjection.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_javaInterop_generics_invariantArgumentsNoWildcard (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/javaInterop/generics/invariantArgumentsNoWildcard.kt"
|
||||
}
|
||||
|
||||
Vendored
+10
@@ -0,0 +1,10 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_javaInterop_notNullAssertions_extensionReceiverParameter (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/javaInterop/notNullAssertions/extensionReceiverParameter.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_javaInterop_notNullAssertions_mapPut (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/javaInterop/notNullAssertions/mapPut.kt"
|
||||
}
|
||||
|
||||
Vendored
+26
@@ -0,0 +1,26 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_javaInterop_objectMethods_cloneableClassWithoutClone (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/javaInterop/objectMethods/cloneableClassWithoutClone.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_javaInterop_objectMethods_cloneCallsConstructor (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/javaInterop/objectMethods/cloneCallsConstructor.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_javaInterop_objectMethods_cloneCallsSuper (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/javaInterop/objectMethods/cloneCallsSuper.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_javaInterop_objectMethods_cloneCallsSuperAndModifies (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/javaInterop/objectMethods/cloneCallsSuperAndModifies.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_javaInterop_objectMethods_cloneHashSet (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/javaInterop/objectMethods/cloneHashSet.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_javaInterop_objectMethods_cloneHierarchy (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/javaInterop/objectMethods/cloneHierarchy.kt"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user