[IR] Drop duplicated meta info from interpreters tests

This commit is contained in:
Ivan Kylchik
2023-04-18 11:03:30 +02:00
committed by Space Team
parent 3f60c83921
commit 6b75b3bc4a
25 changed files with 590 additions and 540 deletions
@@ -9,10 +9,11 @@ const val shortVal: UShort = <!EVALUATED("2")!>2u<!>
const val intVal: UInt = <!EVALUATED("3")!>3u<!>
const val longVal: ULong = <!EVALUATED("4")!>4uL<!>
// STOP_EVALUATION_CHECKS
fun box(): String {
if (<!EVALUATED("1")!>byteVal<!>.id() != 1u.toUByte()) return "Fail 1"
if (<!EVALUATED("2")!>shortVal<!>.id() != 2u.toUShort()) return "Fail 2"
if (<!EVALUATED("3")!>intVal<!>.id() != 3u.toUInt()) return "Fail 3"
if (<!EVALUATED("4")!>longVal<!>.id() != 4u.toULong()) return "Fail 4"
if (byteVal.id() != 1u.toUByte()) return "Fail 1"
if (shortVal.id() != 2u.toUShort()) return "Fail 2"
if (intVal.id() != 3u.toUInt()) return "Fail 3"
if (longVal.id() != 4u.toULong()) return "Fail 4"
return "OK"
}