[Test] Convert IGNORE: NATIVE directives in box tests from M to R
^KT-59057 Merge-request: KT-MR-10757 Merged-by: Vladimir Sukharev <Vladimir.Sukharev@jetbrains.com>
This commit is contained in:
committed by
Space Team
parent
d0dc292c30
commit
7930885131
+6
@@ -34319,6 +34319,12 @@ public class FirLightTreeBlackBoxCodegenTestGenerated extends AbstractFirLightTr
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1047a.kt")
|
||||
public void testKt1047a() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047a.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt11117.kt")
|
||||
public void testKt11117() throws Exception {
|
||||
|
||||
+6
@@ -34319,6 +34319,12 @@ public class FirPsiBlackBoxCodegenTestGenerated extends AbstractFirPsiBlackBoxCo
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1047a.kt")
|
||||
public void testKt1047a() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047a.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt11117.kt")
|
||||
public void testKt11117() throws Exception {
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
// !SANITIZE_PARENTHESES
|
||||
// JS error: com.google.gwt.dev.js.parserExceptions.JsParserException: missing ) after formal parameters at (95, 33)
|
||||
// NATIVE error: name contains illegal characters: "()"
|
||||
// IGNORE_BACKEND: JS, NATIVE
|
||||
// !LANGUAGE: +JsAllowInvalidCharsIdentifiersEscaping
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
// https://youtrack.jetbrains.com/issue/KT-50289/EXCBADACCESS-getting-non-null-property-in-safe-call-chain
|
||||
// IGNORE_BACKEND: NATIVE
|
||||
|
||||
abstract class Z {
|
||||
|
||||
+2
-6
@@ -1,9 +1,5 @@
|
||||
// IGNORE_BACKEND: WASM
|
||||
// WASM_MUTE_REASON: IGNORED_IN_JS
|
||||
// IGNORE_BACKEND: JS_IR
|
||||
// IGNORE_BACKEND: JS_IR_ES6
|
||||
// TODO: muted automatically, investigate should it be ran for JS or not
|
||||
// IGNORE_BACKEND: JS, NATIVE
|
||||
// TARGET_BACKEND: JVM
|
||||
// TARGET_BACKEND: JVM_IR
|
||||
|
||||
public open class Test() {
|
||||
open public fun test() : Unit {
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
var result: String = "FAIL"
|
||||
|
||||
public open class Test() {
|
||||
open public fun test() : Unit {
|
||||
result = ok!!
|
||||
}
|
||||
companion object {
|
||||
private val ok : String? = "OK"
|
||||
}
|
||||
}
|
||||
|
||||
fun box() : String {
|
||||
Test().test()
|
||||
return result
|
||||
}
|
||||
+2
-6
@@ -1,9 +1,5 @@
|
||||
// IGNORE_BACKEND: WASM
|
||||
// WASM_MUTE_REASON: IGNORED_IN_JS
|
||||
// IGNORE_BACKEND: JS_IR
|
||||
// IGNORE_BACKEND: JS_IR_ES6
|
||||
// TODO: muted automatically, investigate should it be ran for JS or not
|
||||
// IGNORE_BACKEND: JS, NATIVE
|
||||
// TARGET_BACKEND: JVM
|
||||
// TARGET_BACKEND: JVM_IR
|
||||
|
||||
fun box(): String {
|
||||
return object {
|
||||
|
||||
+2
-6
@@ -1,9 +1,5 @@
|
||||
// IGNORE_BACKEND: WASM
|
||||
// WASM_MUTE_REASON: IGNORED_IN_JS
|
||||
// IGNORE_BACKEND: JS_IR
|
||||
// IGNORE_BACKEND: JS_IR_ES6
|
||||
// TODO: muted automatically, investigate should it be ran for JS or not
|
||||
// IGNORE_BACKEND: JS, NATIVE
|
||||
// TARGET_BACKEND: JVM
|
||||
// TARGET_BACKEND: JVM_IR
|
||||
|
||||
fun box() : String {
|
||||
var a = 1
|
||||
|
||||
+2
-6
@@ -1,9 +1,5 @@
|
||||
// IGNORE_BACKEND: WASM
|
||||
// WASM_MUTE_REASON: IGNORED_IN_JS
|
||||
// IGNORE_BACKEND: JS_IR
|
||||
// IGNORE_BACKEND: JS_IR_ES6
|
||||
// TODO: muted automatically, investigate should it be ran for JS or not
|
||||
// IGNORE_BACKEND: JS, NATIVE
|
||||
// TARGET_BACKEND: JVM
|
||||
// TARGET_BACKEND: JVM_IR
|
||||
// WITH_STDLIB
|
||||
|
||||
object Obj {
|
||||
|
||||
@@ -1,14 +1,7 @@
|
||||
// IGNORE_BACKEND: WASM
|
||||
// WASM_MUTE_REASON: IGNORED_IN_JS
|
||||
// IGNORE_BACKEND: JS_IR
|
||||
// IGNORE_BACKEND: JS_IR_ES6
|
||||
// TODO: muted automatically, investigate should it be ran for JS or not
|
||||
// IGNORE_BACKEND: JS, NATIVE
|
||||
var boxtest_log: String = ""
|
||||
|
||||
fun box(): String? {
|
||||
val log = System.getProperty("boxtest.log")
|
||||
System.clearProperty("boxtest.log") // test can be run twice
|
||||
return if (log == "bca") "OK" else log
|
||||
fun box(): String {
|
||||
return if (boxtest_log == "bca") "OK" else boxtest_log
|
||||
}
|
||||
|
||||
val b = log("b")
|
||||
@@ -16,6 +9,5 @@ val c = log("c")
|
||||
val a = log("a")
|
||||
|
||||
fun log(message: String) {
|
||||
val value = (System.getProperty("boxtest.log") ?: "") + message
|
||||
System.setProperty("boxtest.log", value)
|
||||
}
|
||||
boxtest_log += message
|
||||
}
|
||||
|
||||
+2
-7
@@ -1,10 +1,5 @@
|
||||
// IGNORE_BACKEND: WASM
|
||||
// WASM_MUTE_REASON: IGNORED_IN_JS
|
||||
// IGNORE_BACKEND: JS_IR
|
||||
// IGNORE_BACKEND: JS_IR_ES6
|
||||
// TODO: muted automatically, investigate should it be ran for JS or not
|
||||
// IGNORE_BACKEND: JS, NATIVE
|
||||
|
||||
// TARGET_BACKEND: JVM
|
||||
// TARGET_BACKEND: JVM_IR
|
||||
// StackOverflow with StringBuilder (escape()) on Android 4.4
|
||||
// IGNORE_BACKEND: ANDROID
|
||||
|
||||
|
||||
+2
-6
@@ -1,9 +1,5 @@
|
||||
// IGNORE_BACKEND: WASM
|
||||
// WASM_MUTE_REASON: IGNORED_IN_JS
|
||||
// IGNORE_BACKEND: JS_IR
|
||||
// IGNORE_BACKEND: JS_IR_ES6
|
||||
// TODO: muted automatically, investigate should it be ran for JS or not
|
||||
// IGNORE_BACKEND: JS, NATIVE
|
||||
// TARGET_BACKEND: JVM
|
||||
// TARGET_BACKEND: JVM_IR
|
||||
|
||||
package bottles
|
||||
|
||||
|
||||
@@ -1,9 +1,5 @@
|
||||
// IGNORE_BACKEND: WASM
|
||||
// WASM_MUTE_REASON: IGNORED_IN_JS
|
||||
// IGNORE_BACKEND: JS_IR
|
||||
// IGNORE_BACKEND: JS_IR_ES6
|
||||
// TODO: muted automatically, investigate should it be ran for JS or not
|
||||
// IGNORE_BACKEND: JS, NATIVE
|
||||
// TARGET_BACKEND: JVM
|
||||
// TARGET_BACKEND: JVM_IR
|
||||
|
||||
class L<T>(var a: T) {}
|
||||
|
||||
|
||||
+2
-6
@@ -1,9 +1,5 @@
|
||||
// IGNORE_BACKEND: WASM
|
||||
// WASM_MUTE_REASON: IGNORED_IN_JS
|
||||
// IGNORE_BACKEND: JS_IR
|
||||
// IGNORE_BACKEND: JS_IR_ES6
|
||||
// TODO: muted automatically, investigate should it be ran for JS or not
|
||||
// IGNORE_BACKEND: JS, NATIVE
|
||||
// TARGET_BACKEND: JVM
|
||||
// TARGET_BACKEND: JVM_IR
|
||||
|
||||
public object RefreshQueue {
|
||||
|
||||
|
||||
+2
-6
@@ -1,9 +1,5 @@
|
||||
// IGNORE_BACKEND: WASM
|
||||
// WASM_MUTE_REASON: IGNORED_IN_JS
|
||||
// IGNORE_BACKEND: JS_IR
|
||||
// IGNORE_BACKEND: JS_IR_ES6
|
||||
// TODO: muted automatically, investigate should it be ran for JS or not
|
||||
// IGNORE_BACKEND: JS, NATIVE
|
||||
// TARGET_BACKEND: JVM
|
||||
// TARGET_BACKEND: JVM_IR
|
||||
|
||||
interface A {
|
||||
val method : (() -> Unit )?
|
||||
|
||||
+2
-6
@@ -1,9 +1,5 @@
|
||||
// IGNORE_BACKEND: WASM
|
||||
// WASM_MUTE_REASON: IGNORED_IN_JS
|
||||
// IGNORE_BACKEND: JS_IR
|
||||
// IGNORE_BACKEND: JS_IR_ES6
|
||||
// TODO: muted automatically, investigate should it be ran for JS or not
|
||||
// IGNORE_BACKEND: JS, NATIVE
|
||||
// TARGET_BACKEND: JVM
|
||||
// TARGET_BACKEND: JVM_IR
|
||||
// not sure if it's ok to change Object to Any
|
||||
|
||||
// WITH_STDLIB
|
||||
|
||||
+6
@@ -32657,6 +32657,12 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1047a.kt")
|
||||
public void testKt1047a() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047a.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt11117.kt")
|
||||
public void testKt11117() throws Exception {
|
||||
|
||||
+6
@@ -34319,6 +34319,12 @@ public class IrBlackBoxCodegenTestGenerated extends AbstractIrBlackBoxCodegenTes
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1047a.kt")
|
||||
public void testKt1047a() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047a.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt11117.kt")
|
||||
public void testKt11117() throws Exception {
|
||||
|
||||
+6
@@ -34319,6 +34319,12 @@ public class IrBlackBoxCodegenWithIrInlinerTestGenerated extends AbstractIrBlack
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1047a.kt")
|
||||
public void testKt1047a() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047a.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt11117.kt")
|
||||
public void testKt11117() throws Exception {
|
||||
|
||||
+5
@@ -29259,6 +29259,11 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt1047a.kt")
|
||||
public void testKt1047a() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047a.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt11117.kt")
|
||||
public void testKt11117() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt11117.kt");
|
||||
|
||||
+3
-57
@@ -23952,9 +23952,9 @@ public class FirJsCodegenBoxTestGenerated extends AbstractFirJsCodegenBoxTest {
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1047.kt")
|
||||
public void testKt1047() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047.kt");
|
||||
@TestMetadata("kt1047a.kt")
|
||||
public void testKt1047a() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047a.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -23975,12 +23975,6 @@ public class FirJsCodegenBoxTestGenerated extends AbstractFirJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1600.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1737.kt")
|
||||
public void testKt1737() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1737.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt18982.kt")
|
||||
public void testKt18982() throws Exception {
|
||||
@@ -23999,12 +23993,6 @@ public class FirJsCodegenBoxTestGenerated extends AbstractFirJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/objects/kt2663.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt2663_2.kt")
|
||||
public void testKt2663_2() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt2663_2.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt2663_3.kt")
|
||||
public void testKt2663_3() throws Exception {
|
||||
@@ -24035,12 +24023,6 @@ public class FirJsCodegenBoxTestGenerated extends AbstractFirJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/objects/kt32351.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt3238.kt")
|
||||
public void testKt3238() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt3238.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt32749.kt")
|
||||
public void testKt32749() throws Exception {
|
||||
@@ -25307,12 +25289,6 @@ public class FirJsCodegenBoxTestGenerated extends AbstractFirJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt665.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt684.kt")
|
||||
public void testKt684() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt684.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt711.kt")
|
||||
public void testKt711() throws Exception {
|
||||
@@ -25373,12 +25349,6 @@ public class FirJsCodegenBoxTestGenerated extends AbstractFirJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt887.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt935.kt")
|
||||
public void testKt935() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt935.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("nullAsNullableIntIsNull.kt")
|
||||
public void testNullAsNullableIntIsNull() throws Exception {
|
||||
@@ -25415,12 +25385,6 @@ public class FirJsCodegenBoxTestGenerated extends AbstractFirJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/stringEqualsHashCodeToString.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("substituteIntForGeneric.kt")
|
||||
public void testSubstituteIntForGeneric() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/substituteIntForGeneric.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("unboxComparable.kt")
|
||||
public void testUnboxComparable() throws Exception {
|
||||
@@ -25997,12 +25961,6 @@ public class FirJsCodegenBoxTestGenerated extends AbstractFirJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/properties/kt10729.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1159.kt")
|
||||
public void testKt1159() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/kt1159.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1165.kt")
|
||||
public void testKt1165() throws Exception {
|
||||
@@ -26033,12 +25991,6 @@ public class FirJsCodegenBoxTestGenerated extends AbstractFirJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/properties/kt1417.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1714.kt")
|
||||
public void testKt1714() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/kt1714.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1714_minimal.kt")
|
||||
public void testKt1714_minimal() throws Exception {
|
||||
@@ -33193,12 +33145,6 @@ public class FirJsCodegenBoxTestGenerated extends AbstractFirJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/regressions/Kt1149.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1172.kt")
|
||||
public void testKt1172() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/regressions/kt1172.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt13381.kt")
|
||||
public void testKt13381() throws Exception {
|
||||
|
||||
+3
-57
@@ -23952,9 +23952,9 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1047.kt")
|
||||
public void testKt1047() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047.kt");
|
||||
@TestMetadata("kt1047a.kt")
|
||||
public void testKt1047a() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047a.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -23975,12 +23975,6 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1600.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1737.kt")
|
||||
public void testKt1737() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1737.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt18982.kt")
|
||||
public void testKt18982() throws Exception {
|
||||
@@ -23999,12 +23993,6 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/objects/kt2663.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt2663_2.kt")
|
||||
public void testKt2663_2() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt2663_2.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt2663_3.kt")
|
||||
public void testKt2663_3() throws Exception {
|
||||
@@ -24035,12 +24023,6 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/objects/kt32351.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt3238.kt")
|
||||
public void testKt3238() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt3238.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt32749.kt")
|
||||
public void testKt32749() throws Exception {
|
||||
@@ -25307,12 +25289,6 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt665.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt684.kt")
|
||||
public void testKt684() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt684.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt711.kt")
|
||||
public void testKt711() throws Exception {
|
||||
@@ -25373,12 +25349,6 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt887.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt935.kt")
|
||||
public void testKt935() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt935.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("nullAsNullableIntIsNull.kt")
|
||||
public void testNullAsNullableIntIsNull() throws Exception {
|
||||
@@ -25415,12 +25385,6 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/stringEqualsHashCodeToString.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("substituteIntForGeneric.kt")
|
||||
public void testSubstituteIntForGeneric() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/substituteIntForGeneric.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("unboxComparable.kt")
|
||||
public void testUnboxComparable() throws Exception {
|
||||
@@ -25997,12 +25961,6 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/properties/kt10729.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1159.kt")
|
||||
public void testKt1159() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/kt1159.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1165.kt")
|
||||
public void testKt1165() throws Exception {
|
||||
@@ -26033,12 +25991,6 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/properties/kt1417.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1714.kt")
|
||||
public void testKt1714() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/kt1714.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1714_minimal.kt")
|
||||
public void testKt1714_minimal() throws Exception {
|
||||
@@ -33193,12 +33145,6 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/regressions/Kt1149.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1172.kt")
|
||||
public void testKt1172() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/regressions/kt1172.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt13381.kt")
|
||||
public void testKt13381() throws Exception {
|
||||
|
||||
+3
-57
@@ -23952,9 +23952,9 @@ public class IrJsES6CodegenBoxTestGenerated extends AbstractIrJsES6CodegenBoxTes
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1047.kt")
|
||||
public void testKt1047() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047.kt");
|
||||
@TestMetadata("kt1047a.kt")
|
||||
public void testKt1047a() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047a.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -23975,12 +23975,6 @@ public class IrJsES6CodegenBoxTestGenerated extends AbstractIrJsES6CodegenBoxTes
|
||||
runTest("compiler/testData/codegen/box/objects/kt1600.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1737.kt")
|
||||
public void testKt1737() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1737.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt18982.kt")
|
||||
public void testKt18982() throws Exception {
|
||||
@@ -23999,12 +23993,6 @@ public class IrJsES6CodegenBoxTestGenerated extends AbstractIrJsES6CodegenBoxTes
|
||||
runTest("compiler/testData/codegen/box/objects/kt2663.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt2663_2.kt")
|
||||
public void testKt2663_2() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt2663_2.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt2663_3.kt")
|
||||
public void testKt2663_3() throws Exception {
|
||||
@@ -24035,12 +24023,6 @@ public class IrJsES6CodegenBoxTestGenerated extends AbstractIrJsES6CodegenBoxTes
|
||||
runTest("compiler/testData/codegen/box/objects/kt32351.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt3238.kt")
|
||||
public void testKt3238() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt3238.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt32749.kt")
|
||||
public void testKt32749() throws Exception {
|
||||
@@ -25307,12 +25289,6 @@ public class IrJsES6CodegenBoxTestGenerated extends AbstractIrJsES6CodegenBoxTes
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt665.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt684.kt")
|
||||
public void testKt684() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt684.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt711.kt")
|
||||
public void testKt711() throws Exception {
|
||||
@@ -25373,12 +25349,6 @@ public class IrJsES6CodegenBoxTestGenerated extends AbstractIrJsES6CodegenBoxTes
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt887.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt935.kt")
|
||||
public void testKt935() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt935.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("nullAsNullableIntIsNull.kt")
|
||||
public void testNullAsNullableIntIsNull() throws Exception {
|
||||
@@ -25415,12 +25385,6 @@ public class IrJsES6CodegenBoxTestGenerated extends AbstractIrJsES6CodegenBoxTes
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/stringEqualsHashCodeToString.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("substituteIntForGeneric.kt")
|
||||
public void testSubstituteIntForGeneric() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/substituteIntForGeneric.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("unboxComparable.kt")
|
||||
public void testUnboxComparable() throws Exception {
|
||||
@@ -25997,12 +25961,6 @@ public class IrJsES6CodegenBoxTestGenerated extends AbstractIrJsES6CodegenBoxTes
|
||||
runTest("compiler/testData/codegen/box/properties/kt10729.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1159.kt")
|
||||
public void testKt1159() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/kt1159.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1165.kt")
|
||||
public void testKt1165() throws Exception {
|
||||
@@ -26033,12 +25991,6 @@ public class IrJsES6CodegenBoxTestGenerated extends AbstractIrJsES6CodegenBoxTes
|
||||
runTest("compiler/testData/codegen/box/properties/kt1417.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1714.kt")
|
||||
public void testKt1714() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/kt1714.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1714_minimal.kt")
|
||||
public void testKt1714_minimal() throws Exception {
|
||||
@@ -33193,12 +33145,6 @@ public class IrJsES6CodegenBoxTestGenerated extends AbstractIrJsES6CodegenBoxTes
|
||||
runTest("compiler/testData/codegen/box/regressions/Kt1149.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1172.kt")
|
||||
public void testKt1172() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/regressions/kt1172.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt13381.kt")
|
||||
public void testKt13381() throws Exception {
|
||||
|
||||
+3
-57
@@ -26963,9 +26963,9 @@ public class FirNativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTe
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1047.kt")
|
||||
public void testKt1047() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047.kt");
|
||||
@TestMetadata("kt1047a.kt")
|
||||
public void testKt1047a() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047a.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -26986,12 +26986,6 @@ public class FirNativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTe
|
||||
runTest("compiler/testData/codegen/box/objects/kt1600.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1737.kt")
|
||||
public void testKt1737() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1737.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt18982.kt")
|
||||
public void testKt18982() throws Exception {
|
||||
@@ -27010,12 +27004,6 @@ public class FirNativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTe
|
||||
runTest("compiler/testData/codegen/box/objects/kt2663.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt2663_2.kt")
|
||||
public void testKt2663_2() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt2663_2.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt2663_3.kt")
|
||||
public void testKt2663_3() throws Exception {
|
||||
@@ -27046,12 +27034,6 @@ public class FirNativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTe
|
||||
runTest("compiler/testData/codegen/box/objects/kt32351.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt3238.kt")
|
||||
public void testKt3238() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt3238.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt32749.kt")
|
||||
public void testKt32749() throws Exception {
|
||||
@@ -28348,12 +28330,6 @@ public class FirNativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTe
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt665.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt684.kt")
|
||||
public void testKt684() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt684.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt711.kt")
|
||||
public void testKt711() throws Exception {
|
||||
@@ -28414,12 +28390,6 @@ public class FirNativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTe
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt887.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt935.kt")
|
||||
public void testKt935() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt935.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("nullAsNullableIntIsNull.kt")
|
||||
public void testNullAsNullableIntIsNull() throws Exception {
|
||||
@@ -28456,12 +28426,6 @@ public class FirNativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTe
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/stringEqualsHashCodeToString.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("substituteIntForGeneric.kt")
|
||||
public void testSubstituteIntForGeneric() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/substituteIntForGeneric.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("unboxComparable.kt")
|
||||
public void testUnboxComparable() throws Exception {
|
||||
@@ -29038,12 +29002,6 @@ public class FirNativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTe
|
||||
runTest("compiler/testData/codegen/box/properties/kt10729.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1159.kt")
|
||||
public void testKt1159() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/kt1159.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1165.kt")
|
||||
public void testKt1165() throws Exception {
|
||||
@@ -29074,12 +29032,6 @@ public class FirNativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTe
|
||||
runTest("compiler/testData/codegen/box/properties/kt1417.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1714.kt")
|
||||
public void testKt1714() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/kt1714.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1714_minimal.kt")
|
||||
public void testKt1714_minimal() throws Exception {
|
||||
@@ -36591,12 +36543,6 @@ public class FirNativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTe
|
||||
runTest("compiler/testData/codegen/box/regressions/Kt1149.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1172.kt")
|
||||
public void testKt1172() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/regressions/kt1172.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt13381.kt")
|
||||
public void testKt13381() throws Exception {
|
||||
|
||||
+3
-57
@@ -27587,9 +27587,9 @@ public class FirNativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenB
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1047.kt")
|
||||
public void testKt1047() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047.kt");
|
||||
@TestMetadata("kt1047a.kt")
|
||||
public void testKt1047a() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047a.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -27610,12 +27610,6 @@ public class FirNativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenB
|
||||
runTest("compiler/testData/codegen/box/objects/kt1600.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1737.kt")
|
||||
public void testKt1737() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1737.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt18982.kt")
|
||||
public void testKt18982() throws Exception {
|
||||
@@ -27634,12 +27628,6 @@ public class FirNativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenB
|
||||
runTest("compiler/testData/codegen/box/objects/kt2663.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt2663_2.kt")
|
||||
public void testKt2663_2() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt2663_2.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt2663_3.kt")
|
||||
public void testKt2663_3() throws Exception {
|
||||
@@ -27670,12 +27658,6 @@ public class FirNativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenB
|
||||
runTest("compiler/testData/codegen/box/objects/kt32351.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt3238.kt")
|
||||
public void testKt3238() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt3238.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt32749.kt")
|
||||
public void testKt32749() throws Exception {
|
||||
@@ -28996,12 +28978,6 @@ public class FirNativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenB
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt665.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt684.kt")
|
||||
public void testKt684() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt684.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt711.kt")
|
||||
public void testKt711() throws Exception {
|
||||
@@ -29062,12 +29038,6 @@ public class FirNativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenB
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt887.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt935.kt")
|
||||
public void testKt935() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt935.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("nullAsNullableIntIsNull.kt")
|
||||
public void testNullAsNullableIntIsNull() throws Exception {
|
||||
@@ -29104,12 +29074,6 @@ public class FirNativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenB
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/stringEqualsHashCodeToString.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("substituteIntForGeneric.kt")
|
||||
public void testSubstituteIntForGeneric() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/substituteIntForGeneric.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("unboxComparable.kt")
|
||||
public void testUnboxComparable() throws Exception {
|
||||
@@ -29698,12 +29662,6 @@ public class FirNativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenB
|
||||
runTest("compiler/testData/codegen/box/properties/kt10729.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1159.kt")
|
||||
public void testKt1159() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/kt1159.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1165.kt")
|
||||
public void testKt1165() throws Exception {
|
||||
@@ -29734,12 +29692,6 @@ public class FirNativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenB
|
||||
runTest("compiler/testData/codegen/box/properties/kt1417.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1714.kt")
|
||||
public void testKt1714() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/kt1714.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1714_minimal.kt")
|
||||
public void testKt1714_minimal() throws Exception {
|
||||
@@ -37525,12 +37477,6 @@ public class FirNativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenB
|
||||
runTest("compiler/testData/codegen/box/regressions/Kt1149.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1172.kt")
|
||||
public void testKt1172() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/regressions/kt1172.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt13381.kt")
|
||||
public void testKt13381() throws Exception {
|
||||
|
||||
+3
-57
@@ -26652,9 +26652,9 @@ public class NativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTest
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1047.kt")
|
||||
public void testKt1047() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047.kt");
|
||||
@TestMetadata("kt1047a.kt")
|
||||
public void testKt1047a() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047a.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -26675,12 +26675,6 @@ public class NativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTest
|
||||
runTest("compiler/testData/codegen/box/objects/kt1600.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1737.kt")
|
||||
public void testKt1737() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1737.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt18982.kt")
|
||||
public void testKt18982() throws Exception {
|
||||
@@ -26699,12 +26693,6 @@ public class NativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTest
|
||||
runTest("compiler/testData/codegen/box/objects/kt2663.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt2663_2.kt")
|
||||
public void testKt2663_2() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt2663_2.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt2663_3.kt")
|
||||
public void testKt2663_3() throws Exception {
|
||||
@@ -26735,12 +26723,6 @@ public class NativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTest
|
||||
runTest("compiler/testData/codegen/box/objects/kt32351.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt3238.kt")
|
||||
public void testKt3238() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt3238.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt32749.kt")
|
||||
public void testKt32749() throws Exception {
|
||||
@@ -28025,12 +28007,6 @@ public class NativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTest
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt665.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt684.kt")
|
||||
public void testKt684() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt684.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt711.kt")
|
||||
public void testKt711() throws Exception {
|
||||
@@ -28091,12 +28067,6 @@ public class NativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTest
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt887.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt935.kt")
|
||||
public void testKt935() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt935.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("nullAsNullableIntIsNull.kt")
|
||||
public void testNullAsNullableIntIsNull() throws Exception {
|
||||
@@ -28133,12 +28103,6 @@ public class NativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTest
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/stringEqualsHashCodeToString.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("substituteIntForGeneric.kt")
|
||||
public void testSubstituteIntForGeneric() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/substituteIntForGeneric.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("unboxComparable.kt")
|
||||
public void testUnboxComparable() throws Exception {
|
||||
@@ -28709,12 +28673,6 @@ public class NativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTest
|
||||
runTest("compiler/testData/codegen/box/properties/kt10729.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1159.kt")
|
||||
public void testKt1159() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/kt1159.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1165.kt")
|
||||
public void testKt1165() throws Exception {
|
||||
@@ -28745,12 +28703,6 @@ public class NativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTest
|
||||
runTest("compiler/testData/codegen/box/properties/kt1417.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1714.kt")
|
||||
public void testKt1714() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/kt1714.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1714_minimal.kt")
|
||||
public void testKt1714_minimal() throws Exception {
|
||||
@@ -36125,12 +36077,6 @@ public class NativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTest
|
||||
runTest("compiler/testData/codegen/box/regressions/Kt1149.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1172.kt")
|
||||
public void testKt1172() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/regressions/kt1172.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt13381.kt")
|
||||
public void testKt13381() throws Exception {
|
||||
|
||||
+3
-57
@@ -26964,9 +26964,9 @@ public class NativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenBoxT
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1047.kt")
|
||||
public void testKt1047() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047.kt");
|
||||
@TestMetadata("kt1047a.kt")
|
||||
public void testKt1047a() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047a.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -26987,12 +26987,6 @@ public class NativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenBoxT
|
||||
runTest("compiler/testData/codegen/box/objects/kt1600.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1737.kt")
|
||||
public void testKt1737() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1737.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt18982.kt")
|
||||
public void testKt18982() throws Exception {
|
||||
@@ -27011,12 +27005,6 @@ public class NativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenBoxT
|
||||
runTest("compiler/testData/codegen/box/objects/kt2663.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt2663_2.kt")
|
||||
public void testKt2663_2() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt2663_2.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt2663_3.kt")
|
||||
public void testKt2663_3() throws Exception {
|
||||
@@ -27047,12 +27035,6 @@ public class NativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenBoxT
|
||||
runTest("compiler/testData/codegen/box/objects/kt32351.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt3238.kt")
|
||||
public void testKt3238() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt3238.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt32749.kt")
|
||||
public void testKt32749() throws Exception {
|
||||
@@ -28349,12 +28331,6 @@ public class NativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenBoxT
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt665.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt684.kt")
|
||||
public void testKt684() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt684.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt711.kt")
|
||||
public void testKt711() throws Exception {
|
||||
@@ -28415,12 +28391,6 @@ public class NativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenBoxT
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt887.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt935.kt")
|
||||
public void testKt935() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt935.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("nullAsNullableIntIsNull.kt")
|
||||
public void testNullAsNullableIntIsNull() throws Exception {
|
||||
@@ -28457,12 +28427,6 @@ public class NativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenBoxT
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/stringEqualsHashCodeToString.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("substituteIntForGeneric.kt")
|
||||
public void testSubstituteIntForGeneric() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/substituteIntForGeneric.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("unboxComparable.kt")
|
||||
public void testUnboxComparable() throws Exception {
|
||||
@@ -29039,12 +29003,6 @@ public class NativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenBoxT
|
||||
runTest("compiler/testData/codegen/box/properties/kt10729.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1159.kt")
|
||||
public void testKt1159() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/kt1159.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1165.kt")
|
||||
public void testKt1165() throws Exception {
|
||||
@@ -29075,12 +29033,6 @@ public class NativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenBoxT
|
||||
runTest("compiler/testData/codegen/box/properties/kt1417.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1714.kt")
|
||||
public void testKt1714() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/kt1714.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1714_minimal.kt")
|
||||
public void testKt1714_minimal() throws Exception {
|
||||
@@ -36592,12 +36544,6 @@ public class NativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenBoxT
|
||||
runTest("compiler/testData/codegen/box/regressions/Kt1149.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt1172.kt")
|
||||
public void testKt1172() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/regressions/kt1172.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt13381.kt")
|
||||
public void testKt13381() throws Exception {
|
||||
|
||||
Generated
+3
-48
@@ -21297,9 +21297,9 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest
|
||||
runTest("compiler/testData/codegen/box/objects/interfaceCompanionObjectReference.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt1047.kt")
|
||||
public void testKt1047() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047.kt");
|
||||
@TestMetadata("kt1047a.kt")
|
||||
public void testKt1047a() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1047a.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt11117.kt")
|
||||
@@ -21317,11 +21317,6 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest
|
||||
runTest("compiler/testData/codegen/box/objects/kt1600.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt1737.kt")
|
||||
public void testKt1737() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt1737.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt18982.kt")
|
||||
public void testKt18982() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt18982.kt");
|
||||
@@ -21337,11 +21332,6 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest
|
||||
runTest("compiler/testData/codegen/box/objects/kt2663.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt2663_2.kt")
|
||||
public void testKt2663_2() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt2663_2.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt2663_3.kt")
|
||||
public void testKt2663_3() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt2663_3.kt");
|
||||
@@ -21367,11 +21357,6 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest
|
||||
runTest("compiler/testData/codegen/box/objects/kt32351.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt3238.kt")
|
||||
public void testKt3238() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt3238.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt32749.kt")
|
||||
public void testKt32749() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/objects/kt32749.kt");
|
||||
@@ -22478,11 +22463,6 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt665.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt684.kt")
|
||||
public void testKt684() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt684.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt711.kt")
|
||||
public void testKt711() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt711.kt");
|
||||
@@ -22533,11 +22513,6 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt887.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt935.kt")
|
||||
public void testKt935() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/kt935.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("nullAsNullableIntIsNull.kt")
|
||||
public void testNullAsNullableIntIsNull() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/nullAsNullableIntIsNull.kt");
|
||||
@@ -22568,11 +22543,6 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/stringEqualsHashCodeToString.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("substituteIntForGeneric.kt")
|
||||
public void testSubstituteIntForGeneric() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/substituteIntForGeneric.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("unboxComparable.kt")
|
||||
public void testUnboxComparable() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/primitiveTypes/unboxComparable.kt");
|
||||
@@ -23066,11 +23036,6 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest
|
||||
runTest("compiler/testData/codegen/box/properties/kt10729.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt1159.kt")
|
||||
public void testKt1159() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/kt1159.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt1165.kt")
|
||||
public void testKt1165() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/kt1165.kt");
|
||||
@@ -23096,11 +23061,6 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest
|
||||
runTest("compiler/testData/codegen/box/properties/kt1417.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt1714.kt")
|
||||
public void testKt1714() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/kt1714.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt1714_minimal.kt")
|
||||
public void testKt1714_minimal() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/kt1714_minimal.kt");
|
||||
@@ -29642,11 +29602,6 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest
|
||||
runTest("compiler/testData/codegen/box/regressions/Kt1149.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt1172.kt")
|
||||
public void testKt1172() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/regressions/kt1172.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt13381.kt")
|
||||
public void testKt13381() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/regressions/kt13381.kt");
|
||||
|
||||
Reference in New Issue
Block a user