[BE test] Extract and mute cases which don't work on JS from eqNullableDoubles.kt and eqNullableDoubles.kt
This commit is contained in:
@@ -1,7 +1,5 @@
|
|||||||
// !LANGUAGE: +ProperIeee754Comparisons
|
// !LANGUAGE: +ProperIeee754Comparisons
|
||||||
// IGNORE_BACKEND: JS
|
|
||||||
// IGNORE_BACKEND_FIR: JVM_IR
|
// IGNORE_BACKEND_FIR: JVM_IR
|
||||||
// ^ if (eq_double_any(0.0, 0)) throw AssertionError("eq_double_any(0.0, 0)")
|
|
||||||
|
|
||||||
fun eq_double_doubleN(a: Double, b: Double?) = a == b
|
fun eq_double_doubleN(a: Double, b: Double?) = a == b
|
||||||
|
|
||||||
@@ -22,10 +20,8 @@ fun box(): String {
|
|||||||
if (eq_double_doubleN(0.0, null)) throw AssertionError("eq_double_doubleN(0.0, null)")
|
if (eq_double_doubleN(0.0, null)) throw AssertionError("eq_double_doubleN(0.0, null)")
|
||||||
if (!eq_double_any(0.0, 0.0)) throw AssertionError("!eq_double_any(0.0, 0.0)")
|
if (!eq_double_any(0.0, 0.0)) throw AssertionError("!eq_double_any(0.0, 0.0)")
|
||||||
if (eq_double_any(0.0, -0.0)) throw AssertionError("eq_double_any(0.0, -0.0)")
|
if (eq_double_any(0.0, -0.0)) throw AssertionError("eq_double_any(0.0, -0.0)")
|
||||||
if (eq_double_any(0.0, 0)) throw AssertionError("eq_double_any(0.0, 0)")
|
|
||||||
if (!eq_double_anyN(0.0, 0.0)) throw AssertionError("!eq_double_anyN(0.0, 0.0)")
|
if (!eq_double_anyN(0.0, 0.0)) throw AssertionError("!eq_double_anyN(0.0, 0.0)")
|
||||||
if (eq_double_anyN(0.0, -0.0)) throw AssertionError("eq_double_anyN(0.0, -0.0)")
|
if (eq_double_anyN(0.0, -0.0)) throw AssertionError("eq_double_anyN(0.0, -0.0)")
|
||||||
if (eq_double_anyN(0.0, 0)) throw AssertionError("eq_double_anyN(0.0, 0)")
|
|
||||||
if (eq_double_anyN(0.0, null)) throw AssertionError("eq_double_anyN(0.0, null)")
|
if (eq_double_anyN(0.0, null)) throw AssertionError("eq_double_anyN(0.0, null)")
|
||||||
|
|
||||||
if (eq_doubleN_double(null, 0.0)) throw AssertionError("eq_doubleN_double(null, 0.0)")
|
if (eq_doubleN_double(null, 0.0)) throw AssertionError("eq_doubleN_double(null, 0.0)")
|
||||||
@@ -33,10 +29,8 @@ fun box(): String {
|
|||||||
if (eq_doubleN_doubleN(0.0, null)) throw AssertionError("eq_doubleN_doubleN(0.0, null)")
|
if (eq_doubleN_doubleN(0.0, null)) throw AssertionError("eq_doubleN_doubleN(0.0, null)")
|
||||||
if (!eq_doubleN_any(0.0, 0.0)) throw AssertionError("!eq_doubleN_any(0.0, 0.0)")
|
if (!eq_doubleN_any(0.0, 0.0)) throw AssertionError("!eq_doubleN_any(0.0, 0.0)")
|
||||||
if (eq_doubleN_any(0.0, -0.0)) throw AssertionError("eq_doubleN_any(0.0, -0.0)")
|
if (eq_doubleN_any(0.0, -0.0)) throw AssertionError("eq_doubleN_any(0.0, -0.0)")
|
||||||
if (eq_doubleN_any(0.0, 0)) throw AssertionError("eq_doubleN_any(0.0, 0)")
|
|
||||||
if (!eq_doubleN_anyN(0.0, 0.0)) throw AssertionError("!eq_doubleN_anyN(0.0, 0.0)")
|
if (!eq_doubleN_anyN(0.0, 0.0)) throw AssertionError("!eq_doubleN_anyN(0.0, 0.0)")
|
||||||
if (eq_doubleN_anyN(0.0, -0.0)) throw AssertionError("eq_doubleN_anyN(0.0, -0.0)")
|
if (eq_doubleN_anyN(0.0, -0.0)) throw AssertionError("eq_doubleN_anyN(0.0, -0.0)")
|
||||||
if (eq_doubleN_anyN(0.0, 0)) throw AssertionError("eq_doubleN_anyN(0.0, 0)")
|
|
||||||
if (eq_doubleN_anyN(0.0, null)) throw AssertionError("eq_doubleN_anyN(0.0, null)")
|
if (eq_doubleN_anyN(0.0, null)) throw AssertionError("eq_doubleN_anyN(0.0, null)")
|
||||||
|
|
||||||
return "OK"
|
return "OK"
|
||||||
|
|||||||
@@ -0,0 +1,21 @@
|
|||||||
|
// !LANGUAGE: +ProperIeee754Comparisons
|
||||||
|
// It doesn't work on JS due to how numbers are represented, but it could be changed in the future.
|
||||||
|
// IGNORE_BACKEND: JS
|
||||||
|
// IGNORE_BACKEND: JS_IR
|
||||||
|
|
||||||
|
fun eq_double_any(a: Double, b: Any) = a == b
|
||||||
|
|
||||||
|
fun eq_double_anyN(a: Double, b: Any?) = a == b
|
||||||
|
|
||||||
|
fun eq_doubleN_any(a: Double?, b: Any) = a == b
|
||||||
|
|
||||||
|
fun eq_doubleN_anyN(a: Double?, b: Any?) = a == b
|
||||||
|
|
||||||
|
fun box(): String {
|
||||||
|
if (eq_double_any(0.0, 0)) throw AssertionError("eq_double_any(0.0, 0)")
|
||||||
|
if (eq_double_anyN(0.0, 0)) throw AssertionError("eq_double_anyN(0.0, 0)")
|
||||||
|
if (eq_doubleN_any(0.0, 0)) throw AssertionError("eq_doubleN_any(0.0, 0)")
|
||||||
|
if (eq_doubleN_anyN(0.0, 0)) throw AssertionError("eq_doubleN_anyN(0.0, 0)")
|
||||||
|
|
||||||
|
return "OK"
|
||||||
|
}
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
// !LANGUAGE: +ProperIeee754Comparisons
|
||||||
|
// It doesn't work on JS due to how numbers are represented, but it could be changed in the future.
|
||||||
|
// IGNORE_BACKEND: JS
|
||||||
|
// IGNORE_BACKEND: JS_IR
|
||||||
|
// IGNORE_BACKEND_FIR: JVM_IR
|
||||||
|
|
||||||
|
fun <A: Double, B: Any> eq_double_any(a: A, b: B) = a == b
|
||||||
|
|
||||||
|
fun <A: Double, B: Any?> eq_double_anyN(a: A, b: B) = a == b
|
||||||
|
|
||||||
|
fun <A: Double?, B: Any> eq_doubleN_any(a: A, b: B) = a == b
|
||||||
|
|
||||||
|
fun <A: Double?, B: Any?> eq_doubleN_anyN(a: A, b: B) = a == b
|
||||||
|
|
||||||
|
fun box(): String {
|
||||||
|
if (eq_double_any(0.0, 0)) throw AssertionError("eq_double_any(0.0, 0)")
|
||||||
|
if (eq_double_anyN(0.0, 0)) throw AssertionError("eq_double_anyN(0.0, 0)")
|
||||||
|
if (eq_doubleN_any(0.0, 0)) throw AssertionError("eq_doubleN_any(0.0, 0)")
|
||||||
|
if (eq_doubleN_anyN(0.0, 0)) throw AssertionError("eq_doubleN_anyN(0.0, 0)")
|
||||||
|
|
||||||
|
return "OK"
|
||||||
|
}
|
||||||
@@ -1,7 +1,5 @@
|
|||||||
// !LANGUAGE: +ProperIeee754Comparisons
|
// !LANGUAGE: +ProperIeee754Comparisons
|
||||||
// IGNORE_BACKEND: JS
|
|
||||||
// IGNORE_BACKEND_FIR: JVM_IR
|
// IGNORE_BACKEND_FIR: JVM_IR
|
||||||
// ^ if (eq_double_any(0.0, 0)) throw AssertionError("eq_double_any(0.0, 0)")
|
|
||||||
|
|
||||||
fun <A: Double, B: Double?> eq_double_doubleN(a: A, b: B) = a == b
|
fun <A: Double, B: Double?> eq_double_doubleN(a: A, b: B) = a == b
|
||||||
|
|
||||||
@@ -22,10 +20,8 @@ fun box(): String {
|
|||||||
if (eq_double_doubleN(0.0, null)) throw AssertionError("eq_double_doubleN(0.0, null)")
|
if (eq_double_doubleN(0.0, null)) throw AssertionError("eq_double_doubleN(0.0, null)")
|
||||||
if (!eq_double_any(0.0, 0.0)) throw AssertionError("!eq_double_any(0.0, 0.0)")
|
if (!eq_double_any(0.0, 0.0)) throw AssertionError("!eq_double_any(0.0, 0.0)")
|
||||||
if (eq_double_any(0.0, -0.0)) throw AssertionError("eq_double_any(0.0, -0.0)")
|
if (eq_double_any(0.0, -0.0)) throw AssertionError("eq_double_any(0.0, -0.0)")
|
||||||
if (eq_double_any(0.0, 0)) throw AssertionError("eq_double_any(0.0, 0)")
|
|
||||||
if (!eq_double_anyN(0.0, 0.0)) throw AssertionError("!eq_double_anyN(0.0, 0.0)")
|
if (!eq_double_anyN(0.0, 0.0)) throw AssertionError("!eq_double_anyN(0.0, 0.0)")
|
||||||
if (eq_double_anyN(0.0, -0.0)) throw AssertionError("eq_double_anyN(0.0, -0.0)")
|
if (eq_double_anyN(0.0, -0.0)) throw AssertionError("eq_double_anyN(0.0, -0.0)")
|
||||||
if (eq_double_anyN(0.0, 0)) throw AssertionError("eq_double_anyN(0.0, 0)")
|
|
||||||
if (eq_double_anyN(0.0, null)) throw AssertionError("eq_double_anyN(0.0, null)")
|
if (eq_double_anyN(0.0, null)) throw AssertionError("eq_double_anyN(0.0, null)")
|
||||||
|
|
||||||
if (eq_doubleN_double(null, 0.0)) throw AssertionError("eq_doubleN_double(null, 0.0)")
|
if (eq_doubleN_double(null, 0.0)) throw AssertionError("eq_doubleN_double(null, 0.0)")
|
||||||
@@ -33,10 +29,8 @@ fun box(): String {
|
|||||||
if (eq_doubleN_doubleN(0.0, null)) throw AssertionError("eq_doubleN_doubleN(0.0, null)")
|
if (eq_doubleN_doubleN(0.0, null)) throw AssertionError("eq_doubleN_doubleN(0.0, null)")
|
||||||
if (!eq_doubleN_any(0.0, 0.0)) throw AssertionError("!eq_doubleN_any(0.0, 0.0)")
|
if (!eq_doubleN_any(0.0, 0.0)) throw AssertionError("!eq_doubleN_any(0.0, 0.0)")
|
||||||
if (eq_doubleN_any(0.0, -0.0)) throw AssertionError("eq_doubleN_any(0.0, -0.0)")
|
if (eq_doubleN_any(0.0, -0.0)) throw AssertionError("eq_doubleN_any(0.0, -0.0)")
|
||||||
if (eq_doubleN_any(0.0, 0)) throw AssertionError("eq_doubleN_any(0.0, 0)")
|
|
||||||
if (!eq_doubleN_anyN(0.0, 0.0)) throw AssertionError("!eq_doubleN_anyN(0.0, 0.0)")
|
if (!eq_doubleN_anyN(0.0, 0.0)) throw AssertionError("!eq_doubleN_anyN(0.0, 0.0)")
|
||||||
if (eq_doubleN_anyN(0.0, -0.0)) throw AssertionError("eq_doubleN_anyN(0.0, -0.0)")
|
if (eq_doubleN_anyN(0.0, -0.0)) throw AssertionError("eq_doubleN_anyN(0.0, -0.0)")
|
||||||
if (eq_doubleN_anyN(0.0, 0)) throw AssertionError("eq_doubleN_anyN(0.0, 0)")
|
|
||||||
if (eq_doubleN_anyN(0.0, null)) throw AssertionError("eq_doubleN_anyN(0.0, null)")
|
if (eq_doubleN_anyN(0.0, null)) throw AssertionError("eq_doubleN_anyN(0.0, null)")
|
||||||
|
|
||||||
return "OK"
|
return "OK"
|
||||||
|
|||||||
+10
@@ -1121,6 +1121,16 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
|
|||||||
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoubles.kt");
|
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoubles.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@TestMetadata("eqNullableDoublesToInt.kt")
|
||||||
|
public void testEqNullableDoublesToInt() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoublesToInt.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@TestMetadata("eqNullableDoublesToIntWithTP.kt")
|
||||||
|
public void testEqNullableDoublesToIntWithTP() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoublesToIntWithTP.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@TestMetadata("eqNullableDoublesWithTP.kt")
|
@TestMetadata("eqNullableDoublesWithTP.kt")
|
||||||
public void testEqNullableDoublesWithTP() throws Exception {
|
public void testEqNullableDoublesWithTP() throws Exception {
|
||||||
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoublesWithTP.kt");
|
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoublesWithTP.kt");
|
||||||
|
|||||||
+25
-15
@@ -1121,6 +1121,16 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
|
|||||||
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoubles.kt");
|
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoubles.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@TestMetadata("eqNullableDoublesToInt.kt")
|
||||||
|
public void testEqNullableDoublesToInt() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoublesToInt.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@TestMetadata("eqNullableDoublesToIntWithTP.kt")
|
||||||
|
public void testEqNullableDoublesToIntWithTP() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoublesToIntWithTP.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@TestMetadata("eqNullableDoublesWithTP.kt")
|
@TestMetadata("eqNullableDoublesWithTP.kt")
|
||||||
public void testEqNullableDoublesWithTP() throws Exception {
|
public void testEqNullableDoublesWithTP() throws Exception {
|
||||||
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoublesWithTP.kt");
|
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoublesWithTP.kt");
|
||||||
@@ -14705,6 +14715,11 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
|
|||||||
@TestDataPath("$PROJECT_ROOT")
|
@TestDataPath("$PROJECT_ROOT")
|
||||||
@RunWith(JUnit3RunnerWithInners.class)
|
@RunWith(JUnit3RunnerWithInners.class)
|
||||||
public static class NotNullAssertions extends AbstractLightAnalysisModeTest {
|
public static class NotNullAssertions extends AbstractLightAnalysisModeTest {
|
||||||
|
@TestMetadata("paramAssertionMessage.kt")
|
||||||
|
public void ignoreParamAssertionMessage() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/box/javaInterop/notNullAssertions/paramAssertionMessage.kt");
|
||||||
|
}
|
||||||
|
|
||||||
private void runTest(String testDataFilePath) throws Exception {
|
private void runTest(String testDataFilePath) throws Exception {
|
||||||
KotlinTestUtils.runTest(this::doTest, TargetBackend.JVM, testDataFilePath);
|
KotlinTestUtils.runTest(this::doTest, TargetBackend.JVM, testDataFilePath);
|
||||||
}
|
}
|
||||||
@@ -14793,11 +14808,6 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
|
|||||||
runTest("compiler/testData/codegen/box/javaInterop/notNullAssertions/nullableTypeParameter.kt");
|
runTest("compiler/testData/codegen/box/javaInterop/notNullAssertions/nullableTypeParameter.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
@TestMetadata("paramAssertionMessage.kt")
|
|
||||||
public void testParamAssertionMessage() throws Exception {
|
|
||||||
runTest("compiler/testData/codegen/box/javaInterop/notNullAssertions/paramAssertionMessage.kt");
|
|
||||||
}
|
|
||||||
|
|
||||||
@TestMetadata("staticCallErrorMessage.kt")
|
@TestMetadata("staticCallErrorMessage.kt")
|
||||||
public void testStaticCallErrorMessage() throws Exception {
|
public void testStaticCallErrorMessage() throws Exception {
|
||||||
runTest("compiler/testData/codegen/box/javaInterop/notNullAssertions/staticCallErrorMessage.kt");
|
runTest("compiler/testData/codegen/box/javaInterop/notNullAssertions/staticCallErrorMessage.kt");
|
||||||
@@ -21255,11 +21265,6 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
|
|||||||
runTest("compiler/testData/codegen/box/ranges/javaInterop/javaArrayOfInheritedNotNullFailFast.kt");
|
runTest("compiler/testData/codegen/box/ranges/javaInterop/javaArrayOfInheritedNotNullFailFast.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
@TestMetadata("javaArrayOfMaybeNullableWithNotNullLoopVariableFailFast.kt")
|
|
||||||
public void ignoreJavaArrayOfMaybeNullableWithNotNullLoopVariableFailFast() throws Exception {
|
|
||||||
runTest("compiler/testData/codegen/box/ranges/javaInterop/javaArrayOfMaybeNullableWithNotNullLoopVariableFailFast.kt");
|
|
||||||
}
|
|
||||||
|
|
||||||
@TestMetadata("javaCollectionOfExplicitNotNullFailFast.kt")
|
@TestMetadata("javaCollectionOfExplicitNotNullFailFast.kt")
|
||||||
public void ignoreJavaCollectionOfExplicitNotNullFailFast() throws Exception {
|
public void ignoreJavaCollectionOfExplicitNotNullFailFast() throws Exception {
|
||||||
runTest("compiler/testData/codegen/box/ranges/javaInterop/javaCollectionOfExplicitNotNullFailFast.kt");
|
runTest("compiler/testData/codegen/box/ranges/javaInterop/javaCollectionOfExplicitNotNullFailFast.kt");
|
||||||
@@ -21270,11 +21275,6 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
|
|||||||
runTest("compiler/testData/codegen/box/ranges/javaInterop/javaCollectionOfInheritedNotNullFailFast.kt");
|
runTest("compiler/testData/codegen/box/ranges/javaInterop/javaCollectionOfInheritedNotNullFailFast.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
@TestMetadata("javaCollectionOfMaybeNullableWithNotNullLoopVariableFailFast.kt")
|
|
||||||
public void ignoreJavaCollectionOfMaybeNullableWithNotNullLoopVariableFailFast() throws Exception {
|
|
||||||
runTest("compiler/testData/codegen/box/ranges/javaInterop/javaCollectionOfMaybeNullableWithNotNullLoopVariableFailFast.kt");
|
|
||||||
}
|
|
||||||
|
|
||||||
@TestMetadata("javaCollectionOfNotNullToTypedArrayFailFast.kt")
|
@TestMetadata("javaCollectionOfNotNullToTypedArrayFailFast.kt")
|
||||||
public void ignoreJavaCollectionOfNotNullToTypedArrayFailFast() throws Exception {
|
public void ignoreJavaCollectionOfNotNullToTypedArrayFailFast() throws Exception {
|
||||||
runTest("compiler/testData/codegen/box/ranges/javaInterop/javaCollectionOfNotNullToTypedArrayFailFast.kt");
|
runTest("compiler/testData/codegen/box/ranges/javaInterop/javaCollectionOfNotNullToTypedArrayFailFast.kt");
|
||||||
@@ -21308,6 +21308,11 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
|
|||||||
runTest("compiler/testData/codegen/box/ranges/javaInterop/javaArrayOfMaybeNullableWithNotNullLoopVariable.kt");
|
runTest("compiler/testData/codegen/box/ranges/javaInterop/javaArrayOfMaybeNullableWithNotNullLoopVariable.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@TestMetadata("javaArrayOfMaybeNullableWithNotNullLoopVariableFailFast.kt")
|
||||||
|
public void testJavaArrayOfMaybeNullableWithNotNullLoopVariableFailFast() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/box/ranges/javaInterop/javaArrayOfMaybeNullableWithNotNullLoopVariableFailFast.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@TestMetadata("javaCollectionOfExplicitNotNull.kt")
|
@TestMetadata("javaCollectionOfExplicitNotNull.kt")
|
||||||
public void testJavaCollectionOfExplicitNotNull() throws Exception {
|
public void testJavaCollectionOfExplicitNotNull() throws Exception {
|
||||||
runTest("compiler/testData/codegen/box/ranges/javaInterop/javaCollectionOfExplicitNotNull.kt");
|
runTest("compiler/testData/codegen/box/ranges/javaInterop/javaCollectionOfExplicitNotNull.kt");
|
||||||
@@ -21333,6 +21338,11 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
|
|||||||
runTest("compiler/testData/codegen/box/ranges/javaInterop/javaCollectionOfMaybeNullableWithNotNullLoopVariable.kt");
|
runTest("compiler/testData/codegen/box/ranges/javaInterop/javaCollectionOfMaybeNullableWithNotNullLoopVariable.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@TestMetadata("javaCollectionOfMaybeNullableWithNotNullLoopVariableFailFast.kt")
|
||||||
|
public void testJavaCollectionOfMaybeNullableWithNotNullLoopVariableFailFast() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/box/ranges/javaInterop/javaCollectionOfMaybeNullableWithNotNullLoopVariableFailFast.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@TestMetadata("javaCollectionOfNotNullFromStdlib.kt")
|
@TestMetadata("javaCollectionOfNotNullFromStdlib.kt")
|
||||||
public void testJavaCollectionOfNotNullFromStdlib() throws Exception {
|
public void testJavaCollectionOfNotNullFromStdlib() throws Exception {
|
||||||
runTest("compiler/testData/codegen/box/ranges/javaInterop/javaCollectionOfNotNullFromStdlib.kt");
|
runTest("compiler/testData/codegen/box/ranges/javaInterop/javaCollectionOfNotNullFromStdlib.kt");
|
||||||
|
|||||||
+10
@@ -1101,6 +1101,16 @@ public class FirBlackBoxCodegenTestGenerated extends AbstractFirBlackBoxCodegenT
|
|||||||
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoubles.kt");
|
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoubles.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@TestMetadata("eqNullableDoublesToInt.kt")
|
||||||
|
public void testEqNullableDoublesToInt() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoublesToInt.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@TestMetadata("eqNullableDoublesToIntWithTP.kt")
|
||||||
|
public void testEqNullableDoublesToIntWithTP() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoublesToIntWithTP.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@TestMetadata("eqNullableDoublesWithTP.kt")
|
@TestMetadata("eqNullableDoublesWithTP.kt")
|
||||||
public void testEqNullableDoublesWithTP() throws Exception {
|
public void testEqNullableDoublesWithTP() throws Exception {
|
||||||
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoublesWithTP.kt");
|
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoublesWithTP.kt");
|
||||||
|
|||||||
+10
@@ -1101,6 +1101,16 @@ public class IrBlackBoxCodegenTestGenerated extends AbstractIrBlackBoxCodegenTes
|
|||||||
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoubles.kt");
|
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoubles.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@TestMetadata("eqNullableDoublesToInt.kt")
|
||||||
|
public void testEqNullableDoublesToInt() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoublesToInt.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@TestMetadata("eqNullableDoublesToIntWithTP.kt")
|
||||||
|
public void testEqNullableDoublesToIntWithTP() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoublesToIntWithTP.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@TestMetadata("eqNullableDoublesWithTP.kt")
|
@TestMetadata("eqNullableDoublesWithTP.kt")
|
||||||
public void testEqNullableDoublesWithTP() throws Exception {
|
public void testEqNullableDoublesWithTP() throws Exception {
|
||||||
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoublesWithTP.kt");
|
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoublesWithTP.kt");
|
||||||
|
|||||||
Generated
+10
@@ -761,6 +761,16 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
|
|||||||
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoubles.kt");
|
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoubles.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@TestMetadata("eqNullableDoublesToInt.kt")
|
||||||
|
public void testEqNullableDoublesToInt() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoublesToInt.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@TestMetadata("eqNullableDoublesToIntWithTP.kt")
|
||||||
|
public void testEqNullableDoublesToIntWithTP() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoublesToIntWithTP.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@TestMetadata("eqNullableDoublesWithTP.kt")
|
@TestMetadata("eqNullableDoublesWithTP.kt")
|
||||||
public void testEqNullableDoublesWithTP() throws Exception {
|
public void testEqNullableDoublesWithTP() throws Exception {
|
||||||
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoublesWithTP.kt");
|
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoublesWithTP.kt");
|
||||||
|
|||||||
+10
@@ -761,6 +761,16 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
|
|||||||
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoubles.kt");
|
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoubles.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@TestMetadata("eqNullableDoublesToInt.kt")
|
||||||
|
public void testEqNullableDoublesToInt() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoublesToInt.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@TestMetadata("eqNullableDoublesToIntWithTP.kt")
|
||||||
|
public void testEqNullableDoublesToIntWithTP() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoublesToIntWithTP.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@TestMetadata("eqNullableDoublesWithTP.kt")
|
@TestMetadata("eqNullableDoublesWithTP.kt")
|
||||||
public void testEqNullableDoublesWithTP() throws Exception {
|
public void testEqNullableDoublesWithTP() throws Exception {
|
||||||
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoublesWithTP.kt");
|
runTest("compiler/testData/codegen/box/binaryOp/eqNullableDoublesWithTP.kt");
|
||||||
|
|||||||
Reference in New Issue
Block a user