diff --git a/compiler/testData/codegen/box/constants/comparisonFalse.kt b/compiler/testData/codegen/box/constants/comparisonFalse.kt index 93a528c09c9..f4b8303dde0 100644 --- a/compiler/testData/codegen/box/constants/comparisonFalse.kt +++ b/compiler/testData/codegen/box/constants/comparisonFalse.kt @@ -1,5 +1,5 @@ // WITH_RUNTIME -// IGNORE_BACKEND: JS_IR +// KJS_WITH_FULL_RUNTIME fun foo(): Array { return arrayOf( 0.0 / 0 == 0.0 / 0, diff --git a/compiler/testData/codegen/box/constants/comparisonTrue.kt b/compiler/testData/codegen/box/constants/comparisonTrue.kt index c7a196e6296..eb1d02c5c20 100644 --- a/compiler/testData/codegen/box/constants/comparisonTrue.kt +++ b/compiler/testData/codegen/box/constants/comparisonTrue.kt @@ -1,5 +1,5 @@ // WITH_RUNTIME -// IGNORE_BACKEND: JS_IR +// KJS_WITH_FULL_RUNTIME fun foo(): Array { return arrayOf( 19 < 20.0, diff --git a/compiler/testData/codegen/box/inference/integerLiteralTypeInLamdaReturnType.kt b/compiler/testData/codegen/box/inference/integerLiteralTypeInLamdaReturnType.kt index 06e42957df2..ae9a9f113b8 100644 --- a/compiler/testData/codegen/box/inference/integerLiteralTypeInLamdaReturnType.kt +++ b/compiler/testData/codegen/box/inference/integerLiteralTypeInLamdaReturnType.kt @@ -1,5 +1,6 @@ // !LANGUAGE: +NewInference -// IGNORE_BACKEND: JVM_IR, JS_IR +// KJS_WITH_FULL_RUNTIME +// IGNORE_BACKEND: JVM_IR // WITH_RUNTIME class Foo {