Files
kotlin-fork/compiler/testData/codegen/box/ranges/literal/simpleSteppedDownTo.kt
T
Mark Punzalan 7efc29df7e Split up generation of test data for codegen/box/ranges into signed and
unsigned ranges/progressions.

The tests pass in JVM_IR for signed, but fail for unsigned due to
inlining being broken. We can disable the JVM_IR tests for unsigned,
while keeping them enabled for signed, to get better test coverage in
the interim until inlining is fixed.
2019-05-14 14:26:15 +02:00

55 lines
1.5 KiB
Kotlin
Vendored

// KJS_WITH_FULL_RUNTIME
// Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT!
// WITH_RUNTIME
fun box(): String {
val list1 = ArrayList<Int>()
for (i in 9 downTo 3 step 2) {
list1.add(i)
if (list1.size > 23) break
}
if (list1 != listOf<Int>(9, 7, 5, 3)) {
return "Wrong elements for 9 downTo 3 step 2: $list1"
}
val list2 = ArrayList<Int>()
for (i in 9.toByte() downTo 3.toByte() step 2) {
list2.add(i)
if (list2.size > 23) break
}
if (list2 != listOf<Int>(9, 7, 5, 3)) {
return "Wrong elements for 9.toByte() downTo 3.toByte() step 2: $list2"
}
val list3 = ArrayList<Int>()
for (i in 9.toShort() downTo 3.toShort() step 2) {
list3.add(i)
if (list3.size > 23) break
}
if (list3 != listOf<Int>(9, 7, 5, 3)) {
return "Wrong elements for 9.toShort() downTo 3.toShort() step 2: $list3"
}
val list4 = ArrayList<Long>()
for (i in 9L downTo 3L step 2L) {
list4.add(i)
if (list4.size > 23) break
}
if (list4 != listOf<Long>(9, 7, 5, 3)) {
return "Wrong elements for 9L downTo 3L step 2L: $list4"
}
val list5 = ArrayList<Char>()
for (i in 'g' downTo 'c' step 2) {
list5.add(i)
if (list5.size > 23) break
}
if (list5 != listOf<Char>('g', 'e', 'c')) {
return "Wrong elements for 'g' downTo 'c' step 2: $list5"
}
return "OK"
}