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,26 @@
import org.jetbrains.kotlin.*
task codegen_blackbox_ranges_forByteProgressionWithIntIncrement (type: RunExternalTest) {
source = "codegen/blackbox/ranges/forByteProgressionWithIntIncrement.kt"
}
task codegen_blackbox_ranges_forInRangeWithImplicitReceiver (type: RunExternalTest) {
source = "codegen/blackbox/ranges/forInRangeWithImplicitReceiver.kt"
}
task codegen_blackbox_ranges_forIntRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/forIntRange.kt"
}
task codegen_blackbox_ranges_forNullableIntInRangeWithImplicitReceiver (type: RunExternalTest) {
source = "codegen/blackbox/ranges/forNullableIntInRangeWithImplicitReceiver.kt"
}
task codegen_blackbox_ranges_multiAssignmentIterationOverIntRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/multiAssignmentIterationOverIntRange.kt"
}
task codegen_blackbox_ranges_safeCallRangeTo (type: RunExternalTest) {
source = "codegen/blackbox/ranges/safeCallRangeTo.kt"
}
@@ -0,0 +1,50 @@
import org.jetbrains.kotlin.*
task codegen_blackbox_ranges_contains_inComparableRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/contains/inComparableRange.kt"
}
task codegen_blackbox_ranges_contains_inExtensionRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/contains/inExtensionRange.kt"
}
task codegen_blackbox_ranges_contains_inIntRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/contains/inIntRange.kt"
}
task codegen_blackbox_ranges_contains_inOptimizableDoubleRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/contains/inOptimizableDoubleRange.kt"
}
task codegen_blackbox_ranges_contains_inOptimizableFloatRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/contains/inOptimizableFloatRange.kt"
}
task codegen_blackbox_ranges_contains_inOptimizableIntRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/contains/inOptimizableIntRange.kt"
}
task codegen_blackbox_ranges_contains_inOptimizableLongRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/contains/inOptimizableLongRange.kt"
}
task codegen_blackbox_ranges_contains_inRangeWithCustomContains (type: RunExternalTest) {
source = "codegen/blackbox/ranges/contains/inRangeWithCustomContains.kt"
}
task codegen_blackbox_ranges_contains_inRangeWithImplicitReceiver (type: RunExternalTest) {
source = "codegen/blackbox/ranges/contains/inRangeWithImplicitReceiver.kt"
}
task codegen_blackbox_ranges_contains_inRangeWithNonmatchingArguments (type: RunExternalTest) {
source = "codegen/blackbox/ranges/contains/inRangeWithNonmatchingArguments.kt"
}
task codegen_blackbox_ranges_contains_inRangeWithSmartCast (type: RunExternalTest) {
source = "codegen/blackbox/ranges/contains/inRangeWithSmartCast.kt"
}
task codegen_blackbox_ranges_contains_rangeContainsString (type: RunExternalTest) {
source = "codegen/blackbox/ranges/contains/rangeContainsString.kt"
}
@@ -0,0 +1,114 @@
import org.jetbrains.kotlin.*
task codegen_blackbox_ranges_expression_emptyDownto (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/emptyDownto.kt"
}
task codegen_blackbox_ranges_expression_emptyRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/emptyRange.kt"
}
task codegen_blackbox_ranges_expression_inexactDownToMinValue (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/inexactDownToMinValue.kt"
}
task codegen_blackbox_ranges_expression_inexactSteppedDownTo (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/inexactSteppedDownTo.kt"
}
task codegen_blackbox_ranges_expression_inexactSteppedRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/inexactSteppedRange.kt"
}
task codegen_blackbox_ranges_expression_inexactToMaxValue (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/inexactToMaxValue.kt"
}
task codegen_blackbox_ranges_expression_maxValueMinusTwoToMaxValue (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/maxValueMinusTwoToMaxValue.kt"
}
task codegen_blackbox_ranges_expression_maxValueToMaxValue (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/maxValueToMaxValue.kt"
}
task codegen_blackbox_ranges_expression_maxValueToMinValue (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/maxValueToMinValue.kt"
}
task codegen_blackbox_ranges_expression_oneElementDownTo (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/oneElementDownTo.kt"
}
task codegen_blackbox_ranges_expression_oneElementRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/oneElementRange.kt"
}
task codegen_blackbox_ranges_expression_openRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/openRange.kt"
}
task codegen_blackbox_ranges_expression_progressionDownToMinValue (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/progressionDownToMinValue.kt"
}
task codegen_blackbox_ranges_expression_progressionMaxValueMinusTwoToMaxValue (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/progressionMaxValueMinusTwoToMaxValue.kt"
}
task codegen_blackbox_ranges_expression_progressionMaxValueToMaxValue (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/progressionMaxValueToMaxValue.kt"
}
task codegen_blackbox_ranges_expression_progressionMaxValueToMinValue (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/progressionMaxValueToMinValue.kt"
}
task codegen_blackbox_ranges_expression_progressionMinValueToMinValue (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/progressionMinValueToMinValue.kt"
}
task codegen_blackbox_ranges_expression_reversedBackSequence (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/reversedBackSequence.kt"
}
task codegen_blackbox_ranges_expression_reversedEmptyBackSequence (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/reversedEmptyBackSequence.kt"
}
task codegen_blackbox_ranges_expression_reversedEmptyRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/reversedEmptyRange.kt"
}
task codegen_blackbox_ranges_expression_reversedInexactSteppedDownTo (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/reversedInexactSteppedDownTo.kt"
}
task codegen_blackbox_ranges_expression_reversedRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/reversedRange.kt"
}
task codegen_blackbox_ranges_expression_reversedSimpleSteppedRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/reversedSimpleSteppedRange.kt"
}
task codegen_blackbox_ranges_expression_simpleDownTo (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/simpleDownTo.kt"
}
task codegen_blackbox_ranges_expression_simpleRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/simpleRange.kt"
}
task codegen_blackbox_ranges_expression_simpleRangeWithNonConstantEnds (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/simpleRangeWithNonConstantEnds.kt"
}
task codegen_blackbox_ranges_expression_simpleSteppedDownTo (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/simpleSteppedDownTo.kt"
}
task codegen_blackbox_ranges_expression_simpleSteppedRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/expression/simpleSteppedRange.kt"
}
@@ -0,0 +1,18 @@
import org.jetbrains.kotlin.*
task codegen_blackbox_ranges_forInDownTo_forIntInDownTo (type: RunExternalTest) {
source = "codegen/blackbox/ranges/forInDownTo/forIntInDownTo.kt"
}
task codegen_blackbox_ranges_forInDownTo_forIntInNonOptimizedDownTo (type: RunExternalTest) {
source = "codegen/blackbox/ranges/forInDownTo/forIntInNonOptimizedDownTo.kt"
}
task codegen_blackbox_ranges_forInDownTo_forLongInDownTo (type: RunExternalTest) {
source = "codegen/blackbox/ranges/forInDownTo/forLongInDownTo.kt"
}
task codegen_blackbox_ranges_forInDownTo_forNullableIntInDownTo (type: RunExternalTest) {
source = "codegen/blackbox/ranges/forInDownTo/forNullableIntInDownTo.kt"
}
@@ -0,0 +1,62 @@
import org.jetbrains.kotlin.*
task codegen_blackbox_ranges_forInIndices_forInCharSequenceIndices (type: RunExternalTest) {
source = "codegen/blackbox/ranges/forInIndices/forInCharSequenceIndices.kt"
}
task codegen_blackbox_ranges_forInIndices_forInCollectionImplicitReceiverIndices (type: RunExternalTest) {
source = "codegen/blackbox/ranges/forInIndices/forInCollectionImplicitReceiverIndices.kt"
}
task codegen_blackbox_ranges_forInIndices_forInCollectionIndices (type: RunExternalTest) {
source = "codegen/blackbox/ranges/forInIndices/forInCollectionIndices.kt"
}
task codegen_blackbox_ranges_forInIndices_forInNonOptimizedIndices (type: RunExternalTest) {
source = "codegen/blackbox/ranges/forInIndices/forInNonOptimizedIndices.kt"
}
task codegen_blackbox_ranges_forInIndices_forInObjectArrayIndices (type: RunExternalTest) {
source = "codegen/blackbox/ranges/forInIndices/forInObjectArrayIndices.kt"
}
task codegen_blackbox_ranges_forInIndices_forInPrimitiveArrayIndices (type: RunExternalTest) {
source = "codegen/blackbox/ranges/forInIndices/forInPrimitiveArrayIndices.kt"
}
task codegen_blackbox_ranges_forInIndices_forNullableIntInArrayIndices (type: RunExternalTest) {
source = "codegen/blackbox/ranges/forInIndices/forNullableIntInArrayIndices.kt"
}
task codegen_blackbox_ranges_forInIndices_forNullableIntInCollectionIndices (type: RunExternalTest) {
source = "codegen/blackbox/ranges/forInIndices/forNullableIntInCollectionIndices.kt"
}
task codegen_blackbox_ranges_forInIndices_kt12983_forInGenericArrayIndices (type: RunExternalTest) {
source = "codegen/blackbox/ranges/forInIndices/kt12983_forInGenericArrayIndices.kt"
}
task codegen_blackbox_ranges_forInIndices_kt12983_forInGenericCollectionIndices (type: RunExternalTest) {
source = "codegen/blackbox/ranges/forInIndices/kt12983_forInGenericCollectionIndices.kt"
}
task codegen_blackbox_ranges_forInIndices_kt12983_forInSpecificArrayIndices (type: RunExternalTest) {
source = "codegen/blackbox/ranges/forInIndices/kt12983_forInSpecificArrayIndices.kt"
}
task codegen_blackbox_ranges_forInIndices_kt12983_forInSpecificCollectionIndices (type: RunExternalTest) {
source = "codegen/blackbox/ranges/forInIndices/kt12983_forInSpecificCollectionIndices.kt"
}
task codegen_blackbox_ranges_forInIndices_kt13241_Array (type: RunExternalTest) {
source = "codegen/blackbox/ranges/forInIndices/kt13241_Array.kt"
}
task codegen_blackbox_ranges_forInIndices_kt13241_CharSequence (type: RunExternalTest) {
source = "codegen/blackbox/ranges/forInIndices/kt13241_CharSequence.kt"
}
task codegen_blackbox_ranges_forInIndices_kt13241_Collection (type: RunExternalTest) {
source = "codegen/blackbox/ranges/forInIndices/kt13241_Collection.kt"
}
@@ -0,0 +1,114 @@
import org.jetbrains.kotlin.*
task codegen_blackbox_ranges_literal_emptyDownto (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/emptyDownto.kt"
}
task codegen_blackbox_ranges_literal_emptyRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/emptyRange.kt"
}
task codegen_blackbox_ranges_literal_inexactDownToMinValue (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/inexactDownToMinValue.kt"
}
task codegen_blackbox_ranges_literal_inexactSteppedDownTo (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/inexactSteppedDownTo.kt"
}
task codegen_blackbox_ranges_literal_inexactSteppedRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/inexactSteppedRange.kt"
}
task codegen_blackbox_ranges_literal_inexactToMaxValue (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/inexactToMaxValue.kt"
}
task codegen_blackbox_ranges_literal_maxValueMinusTwoToMaxValue (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/maxValueMinusTwoToMaxValue.kt"
}
task codegen_blackbox_ranges_literal_maxValueToMaxValue (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/maxValueToMaxValue.kt"
}
task codegen_blackbox_ranges_literal_maxValueToMinValue (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/maxValueToMinValue.kt"
}
task codegen_blackbox_ranges_literal_oneElementDownTo (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/oneElementDownTo.kt"
}
task codegen_blackbox_ranges_literal_oneElementRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/oneElementRange.kt"
}
task codegen_blackbox_ranges_literal_openRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/openRange.kt"
}
task codegen_blackbox_ranges_literal_progressionDownToMinValue (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/progressionDownToMinValue.kt"
}
task codegen_blackbox_ranges_literal_progressionMaxValueMinusTwoToMaxValue (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/progressionMaxValueMinusTwoToMaxValue.kt"
}
task codegen_blackbox_ranges_literal_progressionMaxValueToMaxValue (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/progressionMaxValueToMaxValue.kt"
}
task codegen_blackbox_ranges_literal_progressionMaxValueToMinValue (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/progressionMaxValueToMinValue.kt"
}
task codegen_blackbox_ranges_literal_progressionMinValueToMinValue (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/progressionMinValueToMinValue.kt"
}
task codegen_blackbox_ranges_literal_reversedBackSequence (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/reversedBackSequence.kt"
}
task codegen_blackbox_ranges_literal_reversedEmptyBackSequence (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/reversedEmptyBackSequence.kt"
}
task codegen_blackbox_ranges_literal_reversedEmptyRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/reversedEmptyRange.kt"
}
task codegen_blackbox_ranges_literal_reversedInexactSteppedDownTo (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/reversedInexactSteppedDownTo.kt"
}
task codegen_blackbox_ranges_literal_reversedRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/reversedRange.kt"
}
task codegen_blackbox_ranges_literal_reversedSimpleSteppedRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/reversedSimpleSteppedRange.kt"
}
task codegen_blackbox_ranges_literal_simpleDownTo (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/simpleDownTo.kt"
}
task codegen_blackbox_ranges_literal_simpleRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/simpleRange.kt"
}
task codegen_blackbox_ranges_literal_simpleRangeWithNonConstantEnds (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/simpleRangeWithNonConstantEnds.kt"
}
task codegen_blackbox_ranges_literal_simpleSteppedDownTo (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/simpleSteppedDownTo.kt"
}
task codegen_blackbox_ranges_literal_simpleSteppedRange (type: RunExternalTest) {
source = "codegen/blackbox/ranges/literal/simpleSteppedRange.kt"
}
@@ -0,0 +1,14 @@
import org.jetbrains.kotlin.*
task codegen_blackbox_ranges_nullableLoopParameter_progressionExpression (type: RunExternalTest) {
source = "codegen/blackbox/ranges/nullableLoopParameter/progressionExpression.kt"
}
task codegen_blackbox_ranges_nullableLoopParameter_rangeExpression (type: RunExternalTest) {
source = "codegen/blackbox/ranges/nullableLoopParameter/rangeExpression.kt"
}
task codegen_blackbox_ranges_nullableLoopParameter_rangeLiteral (type: RunExternalTest) {
source = "codegen/blackbox/ranges/nullableLoopParameter/rangeLiteral.kt"
}