From c352117eabb78aa20a1e53f75ce8835b18bf6f1a Mon Sep 17 00:00:00 2001 From: Roman Artemev Date: Tue, 14 May 2019 15:18:22 +0300 Subject: [PATCH] [JS IR BE] Set correct runtime for JS IR BE tests --- compiler/testData/codegen/box/constants/comparisonFalse.kt | 2 +- compiler/testData/codegen/box/constants/comparisonTrue.kt | 2 +- .../box/inference/integerLiteralTypeInLamdaReturnType.kt | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) 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 {