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
@@ -1,7 +1,4 @@
// KJS_WITH_FULL_RUNTIME
// TODO: muted automatically, investigate should it be ran for JVM_IR or not
// IGNORE_BACKEND: JVM_IR
// Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT!
// WITH_RUNTIME
@@ -58,45 +55,5 @@ fun box(): String {
return "Wrong elements for ('c'..'a').reversed(): $list5"
}
val list6 = ArrayList<UInt>()
val range6 = (5u..3u).reversed()
for (i in range6) {
list6.add(i)
if (list6.size > 23) break
}
if (list6 != listOf<UInt>()) {
return "Wrong elements for (5u..3u).reversed(): $list6"
}
val list7 = ArrayList<UInt>()
val range7 = (5u.toUByte()..3u.toUByte()).reversed()
for (i in range7) {
list7.add(i)
if (list7.size > 23) break
}
if (list7 != listOf<UInt>()) {
return "Wrong elements for (5u.toUByte()..3u.toUByte()).reversed(): $list7"
}
val list8 = ArrayList<UInt>()
val range8 = (5u.toUShort()..3u.toUShort()).reversed()
for (i in range8) {
list8.add(i)
if (list8.size > 23) break
}
if (list8 != listOf<UInt>()) {
return "Wrong elements for (5u.toUShort()..3u.toUShort()).reversed(): $list8"
}
val list9 = ArrayList<ULong>()
val range9 = (5uL..3uL).reversed()
for (i in range9) {
list9.add(i)
if (list9.size > 23) break
}
if (list9 != listOf<ULong>()) {
return "Wrong elements for (5uL..3uL).reversed(): $list9"
}
return "OK"
}