diff --git a/compiler/testData/codegen/box/binaryOp/eqNullableDoubles.kt b/compiler/testData/codegen/box/binaryOp/eqNullableDoubles.kt index ba94a8fe774..855b15f1be6 100644 --- a/compiler/testData/codegen/box/binaryOp/eqNullableDoubles.kt +++ b/compiler/testData/codegen/box/binaryOp/eqNullableDoubles.kt @@ -1,5 +1,6 @@ // !LANGUAGE: +ProperIeee754Comparisons // IGNORE_BACKEND: JS +// 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 diff --git a/compiler/testData/codegen/box/binaryOp/eqNullableDoublesWithTP.kt b/compiler/testData/codegen/box/binaryOp/eqNullableDoublesWithTP.kt index 07fe79089c7..4ac73d9f4f6 100644 --- a/compiler/testData/codegen/box/binaryOp/eqNullableDoublesWithTP.kt +++ b/compiler/testData/codegen/box/binaryOp/eqNullableDoublesWithTP.kt @@ -1,5 +1,6 @@ // !LANGUAGE: +ProperIeee754Comparisons // IGNORE_BACKEND: JS +// 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: A, b: B) = a == b diff --git a/compiler/testData/codegen/box/javaInterop/genericSamProjectedOutWithNewInference.kt b/compiler/testData/codegen/box/javaInterop/genericSamProjectedOutWithNewInference.kt index 802c24d6860..ff9f56d2848 100644 --- a/compiler/testData/codegen/box/javaInterop/genericSamProjectedOutWithNewInference.kt +++ b/compiler/testData/codegen/box/javaInterop/genericSamProjectedOutWithNewInference.kt @@ -1,7 +1,6 @@ // !LANGUAGE: +NewInference // IGNORE_BACKEND_FIR: JVM_IR // TARGET_BACKEND: JVM -// IGNORE_BACKEND: JVM_IR // FILE: example/Hello.java @@ -77,4 +76,4 @@ fun box(): String { if (result != "OK") return "fail 5: $result" return "OK" -} \ No newline at end of file +} diff --git a/compiler/testData/codegen/box/javaInterop/notNullAssertions/paramAssertionMessage.kt b/compiler/testData/codegen/box/javaInterop/notNullAssertions/paramAssertionMessage.kt index 8dfe3d599cf..5bc65a34de0 100644 --- a/compiler/testData/codegen/box/javaInterop/notNullAssertions/paramAssertionMessage.kt +++ b/compiler/testData/codegen/box/javaInterop/notNullAssertions/paramAssertionMessage.kt @@ -1,4 +1,6 @@ // TARGET_BACKEND: JVM +// IGNORE_BACKEND: JVM, JVM_IR +// IGNORE_BACKEND_FIR: JVM_IR // FILE: Test.java public class Test {