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,134 @@
import org.jetbrains.kotlin.*
task codegen_blackbox_when_callProperty (type: RunExternalTest) {
source = "codegen/blackbox/when/callProperty.kt"
}
task codegen_blackbox_when_emptyWhen (type: RunExternalTest) {
source = "codegen/blackbox/when/emptyWhen.kt"
}
task codegen_blackbox_when_exceptionOnNoMatch (type: RunExternalTest) {
source = "codegen/blackbox/when/exceptionOnNoMatch.kt"
}
task codegen_blackbox_when_exhaustiveBoolean (type: RunExternalTest) {
source = "codegen/blackbox/when/exhaustiveBoolean.kt"
}
task codegen_blackbox_when_exhaustiveBreakContinue (type: RunExternalTest) {
source = "codegen/blackbox/when/exhaustiveBreakContinue.kt"
}
task codegen_blackbox_when_exhaustiveWhenInitialization (type: RunExternalTest) {
source = "codegen/blackbox/when/exhaustiveWhenInitialization.kt"
}
task codegen_blackbox_when_exhaustiveWhenReturn (type: RunExternalTest) {
source = "codegen/blackbox/when/exhaustiveWhenReturn.kt"
}
task codegen_blackbox_when_implicitExhaustiveAndReturn (type: RunExternalTest) {
source = "codegen/blackbox/when/implicitExhaustiveAndReturn.kt"
}
task codegen_blackbox_when_integralWhenWithNoInlinedConstants (type: RunExternalTest) {
source = "codegen/blackbox/when/integralWhenWithNoInlinedConstants.kt"
}
task codegen_blackbox_when_is (type: RunExternalTest) {
source = "codegen/blackbox/when/is.kt"
}
task codegen_blackbox_when_kt2457 (type: RunExternalTest) {
source = "codegen/blackbox/when/kt2457.kt"
}
task codegen_blackbox_when_kt2466 (type: RunExternalTest) {
source = "codegen/blackbox/when/kt2466.kt"
}
task codegen_blackbox_when_kt5307 (type: RunExternalTest) {
source = "codegen/blackbox/when/kt5307.kt"
}
task codegen_blackbox_when_kt5448 (type: RunExternalTest) {
source = "codegen/blackbox/when/kt5448.kt"
}
task codegen_blackbox_when_longInRange (type: RunExternalTest) {
source = "codegen/blackbox/when/longInRange.kt"
}
task codegen_blackbox_when_matchNotNullAgainstNullable (type: RunExternalTest) {
source = "codegen/blackbox/when/matchNotNullAgainstNullable.kt"
}
task codegen_blackbox_when_multipleEntries (type: RunExternalTest) {
source = "codegen/blackbox/when/multipleEntries.kt"
}
task codegen_blackbox_when_noElseExhaustive (type: RunExternalTest) {
source = "codegen/blackbox/when/noElseExhaustive.kt"
}
task codegen_blackbox_when_noElseExhaustiveStatement (type: RunExternalTest) {
source = "codegen/blackbox/when/noElseExhaustiveStatement.kt"
}
task codegen_blackbox_when_noElseExhaustiveUnitExpected (type: RunExternalTest) {
source = "codegen/blackbox/when/noElseExhaustiveUnitExpected.kt"
}
task codegen_blackbox_when_noElseInStatement (type: RunExternalTest) {
source = "codegen/blackbox/when/noElseInStatement.kt"
}
task codegen_blackbox_when_noElseNoMatch (type: RunExternalTest) {
source = "codegen/blackbox/when/noElseNoMatch.kt"
}
task codegen_blackbox_when_nullableWhen (type: RunExternalTest) {
source = "codegen/blackbox/when/nullableWhen.kt"
}
task codegen_blackbox_when_range (type: RunExternalTest) {
source = "codegen/blackbox/when/range.kt"
}
task codegen_blackbox_when_sealedWhenInitialization (type: RunExternalTest) {
source = "codegen/blackbox/when/sealedWhenInitialization.kt"
}
task codegen_blackbox_when_switchOptimizationDense (type: RunExternalTest) {
source = "codegen/blackbox/when/switchOptimizationDense.kt"
}
task codegen_blackbox_when_switchOptimizationMultipleConditions (type: RunExternalTest) {
source = "codegen/blackbox/when/switchOptimizationMultipleConditions.kt"
}
task codegen_blackbox_when_switchOptimizationSparse (type: RunExternalTest) {
source = "codegen/blackbox/when/switchOptimizationSparse.kt"
}
task codegen_blackbox_when_switchOptimizationStatement (type: RunExternalTest) {
source = "codegen/blackbox/when/switchOptimizationStatement.kt"
}
task codegen_blackbox_when_switchOptimizationTypes (type: RunExternalTest) {
source = "codegen/blackbox/when/switchOptimizationTypes.kt"
}
task codegen_blackbox_when_switchOptimizationUnordered (type: RunExternalTest) {
source = "codegen/blackbox/when/switchOptimizationUnordered.kt"
}
task codegen_blackbox_when_typeDisjunction (type: RunExternalTest) {
source = "codegen/blackbox/when/typeDisjunction.kt"
}
task codegen_blackbox_when_whenArgumentIsEvaluatedOnlyOnce (type: RunExternalTest) {
source = "codegen/blackbox/when/whenArgumentIsEvaluatedOnlyOnce.kt"
}
@@ -0,0 +1,46 @@
import org.jetbrains.kotlin.*
task codegen_blackbox_when_enumOptimization_bigEnum (type: RunExternalTest) {
source = "codegen/blackbox/when/enumOptimization/bigEnum.kt"
}
task codegen_blackbox_when_enumOptimization_duplicatingItems (type: RunExternalTest) {
source = "codegen/blackbox/when/enumOptimization/duplicatingItems.kt"
}
task codegen_blackbox_when_enumOptimization_enumInsideClassObject (type: RunExternalTest) {
source = "codegen/blackbox/when/enumOptimization/enumInsideClassObject.kt"
}
task codegen_blackbox_when_enumOptimization_expression (type: RunExternalTest) {
source = "codegen/blackbox/when/enumOptimization/expression.kt"
}
task codegen_blackbox_when_enumOptimization_functionLiteralInTopLevel (type: RunExternalTest) {
source = "codegen/blackbox/when/enumOptimization/functionLiteralInTopLevel.kt"
}
task codegen_blackbox_when_enumOptimization_manyWhensWithinClass (type: RunExternalTest) {
source = "codegen/blackbox/when/enumOptimization/manyWhensWithinClass.kt"
}
task codegen_blackbox_when_enumOptimization_nonConstantEnum (type: RunExternalTest) {
source = "codegen/blackbox/when/enumOptimization/nonConstantEnum.kt"
}
task codegen_blackbox_when_enumOptimization_nullability (type: RunExternalTest) {
source = "codegen/blackbox/when/enumOptimization/nullability.kt"
}
task codegen_blackbox_when_enumOptimization_nullableEnum (type: RunExternalTest) {
source = "codegen/blackbox/when/enumOptimization/nullableEnum.kt"
}
task codegen_blackbox_when_enumOptimization_subjectAny (type: RunExternalTest) {
source = "codegen/blackbox/when/enumOptimization/subjectAny.kt"
}
task codegen_blackbox_when_enumOptimization_withoutElse (type: RunExternalTest) {
source = "codegen/blackbox/when/enumOptimization/withoutElse.kt"
}
@@ -0,0 +1,26 @@
import org.jetbrains.kotlin.*
task codegen_blackbox_when_stringOptimization_duplicatingItems (type: RunExternalTest) {
source = "codegen/blackbox/when/stringOptimization/duplicatingItems.kt"
}
task codegen_blackbox_when_stringOptimization_duplicatingItemsSameHashCode (type: RunExternalTest) {
source = "codegen/blackbox/when/stringOptimization/duplicatingItemsSameHashCode.kt"
}
task codegen_blackbox_when_stringOptimization_expression (type: RunExternalTest) {
source = "codegen/blackbox/when/stringOptimization/expression.kt"
}
task codegen_blackbox_when_stringOptimization_nullability (type: RunExternalTest) {
source = "codegen/blackbox/when/stringOptimization/nullability.kt"
}
task codegen_blackbox_when_stringOptimization_sameHashCode (type: RunExternalTest) {
source = "codegen/blackbox/when/stringOptimization/sameHashCode.kt"
}
task codegen_blackbox_when_stringOptimization_statement (type: RunExternalTest) {
source = "codegen/blackbox/when/stringOptimization/statement.kt"
}