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.
This commit is contained in:
Mark Punzalan
2019-05-01 10:59:24 -07:00
committed by Alexander Udalov
parent 331891b0d7
commit 7efc29df7e
126 changed files with 4575 additions and 2304 deletions
@@ -5,8 +5,6 @@
const val MaxI = Int.MAX_VALUE
const val MaxL = Long.MAX_VALUE
const val MaxUI = UInt.MAX_VALUE
const val MaxUL = ULong.MAX_VALUE
fun box(): String {
val list1 = ArrayList<Int>()
@@ -29,25 +27,5 @@ fun box(): String {
return "Wrong elements for 0 downTo MaxL step 3: $list2"
}
val list3 = ArrayList<UInt>()
val range3 = 0u downTo MaxUI step 3
for (i in range3) {
list3.add(i)
if (list3.size > 23) break
}
if (list3 != listOf<UInt>()) {
return "Wrong elements for 0u downTo MaxUI step 3: $list3"
}
val list4 = ArrayList<ULong>()
val range4 = 0uL downTo MaxUL step 3
for (i in range4) {
list4.add(i)
if (list4.size > 23) break
}
if (list4 != listOf<ULong>()) {
return "Wrong elements for 0uL downTo MaxUL step 3: $list4"
}
return "OK"
}