From 05123c13f8c8e3eff8be6fc3abaebdacd7503a31 Mon Sep 17 00:00:00 2001 From: Anton Bannykh Date: Wed, 13 Jun 2018 14:40:58 +0300 Subject: [PATCH] [JS IR BE] mute ranges' tests --- compiler/testData/codegen/box/ranges/expression/emptyDownto.kt | 3 +++ compiler/testData/codegen/box/ranges/expression/emptyRange.kt | 3 +++ .../codegen/box/ranges/expression/inexactDownToMinValue.kt | 3 +++ .../codegen/box/ranges/expression/inexactSteppedDownTo.kt | 3 +++ .../codegen/box/ranges/expression/inexactSteppedRange.kt | 3 +++ .../codegen/box/ranges/expression/inexactToMaxValue.kt | 3 +++ .../box/ranges/expression/maxValueMinusTwoToMaxValue.kt | 3 +++ .../codegen/box/ranges/expression/maxValueToMaxValue.kt | 3 +++ .../codegen/box/ranges/expression/maxValueToMinValue.kt | 3 +++ .../testData/codegen/box/ranges/expression/oneElementDownTo.kt | 3 +++ .../testData/codegen/box/ranges/expression/oneElementRange.kt | 3 +++ compiler/testData/codegen/box/ranges/expression/openRange.kt | 3 +++ .../codegen/box/ranges/expression/progressionDownToMinValue.kt | 3 +++ .../ranges/expression/progressionMaxValueMinusTwoToMaxValue.kt | 3 +++ .../box/ranges/expression/progressionMaxValueToMaxValue.kt | 3 +++ .../box/ranges/expression/progressionMaxValueToMinValue.kt | 3 +++ .../box/ranges/expression/progressionMinValueToMinValue.kt | 3 +++ .../codegen/box/ranges/expression/reversedBackSequence.kt | 3 +++ .../codegen/box/ranges/expression/reversedEmptyBackSequence.kt | 3 +++ .../codegen/box/ranges/expression/reversedEmptyRange.kt | 3 +++ .../box/ranges/expression/reversedInexactSteppedDownTo.kt | 3 +++ .../testData/codegen/box/ranges/expression/reversedRange.kt | 3 +++ .../box/ranges/expression/reversedSimpleSteppedRange.kt | 3 +++ .../testData/codegen/box/ranges/expression/simpleDownTo.kt | 3 +++ compiler/testData/codegen/box/ranges/expression/simpleRange.kt | 3 +++ .../box/ranges/expression/simpleRangeWithNonConstantEnds.kt | 3 +++ .../codegen/box/ranges/expression/simpleSteppedDownTo.kt | 3 +++ .../codegen/box/ranges/expression/simpleSteppedRange.kt | 3 +++ compiler/testData/codegen/box/ranges/literal/emptyDownto.kt | 3 +++ compiler/testData/codegen/box/ranges/literal/emptyRange.kt | 3 +++ .../codegen/box/ranges/literal/inexactDownToMinValue.kt | 3 +++ .../codegen/box/ranges/literal/inexactSteppedDownTo.kt | 3 +++ .../testData/codegen/box/ranges/literal/inexactSteppedRange.kt | 3 +++ .../testData/codegen/box/ranges/literal/inexactToMaxValue.kt | 3 +++ .../codegen/box/ranges/literal/maxValueMinusTwoToMaxValue.kt | 3 +++ .../testData/codegen/box/ranges/literal/maxValueToMaxValue.kt | 3 +++ .../testData/codegen/box/ranges/literal/maxValueToMinValue.kt | 3 +++ .../testData/codegen/box/ranges/literal/oneElementDownTo.kt | 3 +++ .../testData/codegen/box/ranges/literal/oneElementRange.kt | 3 +++ compiler/testData/codegen/box/ranges/literal/openRange.kt | 3 +++ .../codegen/box/ranges/literal/progressionDownToMinValue.kt | 3 +++ .../ranges/literal/progressionMaxValueMinusTwoToMaxValue.kt | 3 +++ .../box/ranges/literal/progressionMaxValueToMaxValue.kt | 3 +++ .../box/ranges/literal/progressionMaxValueToMinValue.kt | 3 +++ .../box/ranges/literal/progressionMinValueToMinValue.kt | 3 +++ .../codegen/box/ranges/literal/reversedBackSequence.kt | 3 +++ .../codegen/box/ranges/literal/reversedEmptyBackSequence.kt | 3 +++ .../testData/codegen/box/ranges/literal/reversedEmptyRange.kt | 3 +++ .../codegen/box/ranges/literal/reversedInexactSteppedDownTo.kt | 3 +++ compiler/testData/codegen/box/ranges/literal/reversedRange.kt | 3 +++ .../codegen/box/ranges/literal/reversedSimpleSteppedRange.kt | 3 +++ compiler/testData/codegen/box/ranges/literal/simpleDownTo.kt | 3 +++ compiler/testData/codegen/box/ranges/literal/simpleRange.kt | 3 +++ .../box/ranges/literal/simpleRangeWithNonConstantEnds.kt | 3 +++ .../testData/codegen/box/ranges/literal/simpleSteppedDownTo.kt | 3 +++ .../testData/codegen/box/ranges/literal/simpleSteppedRange.kt | 3 +++ .../kotlin/generators/tests/GenerateRangesCodegenTestData.java | 3 +++ 57 files changed, 171 insertions(+) diff --git a/compiler/testData/codegen/box/ranges/expression/emptyDownto.kt b/compiler/testData/codegen/box/ranges/expression/emptyDownto.kt index 41f9e9357a0..75880835761 100644 --- a/compiler/testData/codegen/box/ranges/expression/emptyDownto.kt +++ b/compiler/testData/codegen/box/ranges/expression/emptyDownto.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/emptyRange.kt b/compiler/testData/codegen/box/ranges/expression/emptyRange.kt index 01f8c158cac..cfea55b3a37 100644 --- a/compiler/testData/codegen/box/ranges/expression/emptyRange.kt +++ b/compiler/testData/codegen/box/ranges/expression/emptyRange.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/inexactDownToMinValue.kt b/compiler/testData/codegen/box/ranges/expression/inexactDownToMinValue.kt index cd4f47398a1..01742296e15 100644 --- a/compiler/testData/codegen/box/ranges/expression/inexactDownToMinValue.kt +++ b/compiler/testData/codegen/box/ranges/expression/inexactDownToMinValue.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // TODO: muted automatically, investigate should it be ran for JS or not // IGNORE_BACKEND: JS diff --git a/compiler/testData/codegen/box/ranges/expression/inexactSteppedDownTo.kt b/compiler/testData/codegen/box/ranges/expression/inexactSteppedDownTo.kt index 5b7871e8f3f..34bbbb10d9c 100644 --- a/compiler/testData/codegen/box/ranges/expression/inexactSteppedDownTo.kt +++ b/compiler/testData/codegen/box/ranges/expression/inexactSteppedDownTo.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/inexactSteppedRange.kt b/compiler/testData/codegen/box/ranges/expression/inexactSteppedRange.kt index f746a9fd09b..35368b0f5c6 100644 --- a/compiler/testData/codegen/box/ranges/expression/inexactSteppedRange.kt +++ b/compiler/testData/codegen/box/ranges/expression/inexactSteppedRange.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/inexactToMaxValue.kt b/compiler/testData/codegen/box/ranges/expression/inexactToMaxValue.kt index 6181201dc99..dfab085e26f 100644 --- a/compiler/testData/codegen/box/ranges/expression/inexactToMaxValue.kt +++ b/compiler/testData/codegen/box/ranges/expression/inexactToMaxValue.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // TODO: muted automatically, investigate should it be ran for JS or not // IGNORE_BACKEND: JS diff --git a/compiler/testData/codegen/box/ranges/expression/maxValueMinusTwoToMaxValue.kt b/compiler/testData/codegen/box/ranges/expression/maxValueMinusTwoToMaxValue.kt index 57ef91abc6b..942c0713afc 100644 --- a/compiler/testData/codegen/box/ranges/expression/maxValueMinusTwoToMaxValue.kt +++ b/compiler/testData/codegen/box/ranges/expression/maxValueMinusTwoToMaxValue.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // TODO: muted automatically, investigate should it be ran for JS or not // IGNORE_BACKEND: JS diff --git a/compiler/testData/codegen/box/ranges/expression/maxValueToMaxValue.kt b/compiler/testData/codegen/box/ranges/expression/maxValueToMaxValue.kt index 67a34700482..b200641e5e4 100644 --- a/compiler/testData/codegen/box/ranges/expression/maxValueToMaxValue.kt +++ b/compiler/testData/codegen/box/ranges/expression/maxValueToMaxValue.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // TODO: muted automatically, investigate should it be ran for JS or not // IGNORE_BACKEND: JS diff --git a/compiler/testData/codegen/box/ranges/expression/maxValueToMinValue.kt b/compiler/testData/codegen/box/ranges/expression/maxValueToMinValue.kt index b636e72842a..27ab145f4fe 100644 --- a/compiler/testData/codegen/box/ranges/expression/maxValueToMinValue.kt +++ b/compiler/testData/codegen/box/ranges/expression/maxValueToMinValue.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // TODO: muted automatically, investigate should it be ran for JS or not // IGNORE_BACKEND: JS diff --git a/compiler/testData/codegen/box/ranges/expression/oneElementDownTo.kt b/compiler/testData/codegen/box/ranges/expression/oneElementDownTo.kt index 302fd2bc7c3..e50f10bf98f 100644 --- a/compiler/testData/codegen/box/ranges/expression/oneElementDownTo.kt +++ b/compiler/testData/codegen/box/ranges/expression/oneElementDownTo.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/oneElementRange.kt b/compiler/testData/codegen/box/ranges/expression/oneElementRange.kt index 065acfd5333..46da3795740 100644 --- a/compiler/testData/codegen/box/ranges/expression/oneElementRange.kt +++ b/compiler/testData/codegen/box/ranges/expression/oneElementRange.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/openRange.kt b/compiler/testData/codegen/box/ranges/expression/openRange.kt index c9a06cc49d6..0bd20bfebdb 100644 --- a/compiler/testData/codegen/box/ranges/expression/openRange.kt +++ b/compiler/testData/codegen/box/ranges/expression/openRange.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/progressionDownToMinValue.kt b/compiler/testData/codegen/box/ranges/expression/progressionDownToMinValue.kt index bda317415de..8f24ba7884c 100644 --- a/compiler/testData/codegen/box/ranges/expression/progressionDownToMinValue.kt +++ b/compiler/testData/codegen/box/ranges/expression/progressionDownToMinValue.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // TODO: muted automatically, investigate should it be ran for JS or not // IGNORE_BACKEND: JS diff --git a/compiler/testData/codegen/box/ranges/expression/progressionMaxValueMinusTwoToMaxValue.kt b/compiler/testData/codegen/box/ranges/expression/progressionMaxValueMinusTwoToMaxValue.kt index 3f8621c2fca..58e009cd45e 100644 --- a/compiler/testData/codegen/box/ranges/expression/progressionMaxValueMinusTwoToMaxValue.kt +++ b/compiler/testData/codegen/box/ranges/expression/progressionMaxValueMinusTwoToMaxValue.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // TODO: muted automatically, investigate should it be ran for JS or not // IGNORE_BACKEND: JS diff --git a/compiler/testData/codegen/box/ranges/expression/progressionMaxValueToMaxValue.kt b/compiler/testData/codegen/box/ranges/expression/progressionMaxValueToMaxValue.kt index 48a8af62402..c298ec6f3c4 100644 --- a/compiler/testData/codegen/box/ranges/expression/progressionMaxValueToMaxValue.kt +++ b/compiler/testData/codegen/box/ranges/expression/progressionMaxValueToMaxValue.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // TODO: muted automatically, investigate should it be ran for JS or not // IGNORE_BACKEND: JS diff --git a/compiler/testData/codegen/box/ranges/expression/progressionMaxValueToMinValue.kt b/compiler/testData/codegen/box/ranges/expression/progressionMaxValueToMinValue.kt index 86eb6031690..b8fce399fe9 100644 --- a/compiler/testData/codegen/box/ranges/expression/progressionMaxValueToMinValue.kt +++ b/compiler/testData/codegen/box/ranges/expression/progressionMaxValueToMinValue.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // TODO: muted automatically, investigate should it be ran for JS or not // IGNORE_BACKEND: JS diff --git a/compiler/testData/codegen/box/ranges/expression/progressionMinValueToMinValue.kt b/compiler/testData/codegen/box/ranges/expression/progressionMinValueToMinValue.kt index fee9a5f92c7..4c92dc2d8ce 100644 --- a/compiler/testData/codegen/box/ranges/expression/progressionMinValueToMinValue.kt +++ b/compiler/testData/codegen/box/ranges/expression/progressionMinValueToMinValue.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // TODO: muted automatically, investigate should it be ran for JS or not // IGNORE_BACKEND: JS diff --git a/compiler/testData/codegen/box/ranges/expression/reversedBackSequence.kt b/compiler/testData/codegen/box/ranges/expression/reversedBackSequence.kt index 3542aa875b8..3387ec34fd7 100644 --- a/compiler/testData/codegen/box/ranges/expression/reversedBackSequence.kt +++ b/compiler/testData/codegen/box/ranges/expression/reversedBackSequence.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/reversedEmptyBackSequence.kt b/compiler/testData/codegen/box/ranges/expression/reversedEmptyBackSequence.kt index dc259b75860..82db4a1e8d3 100644 --- a/compiler/testData/codegen/box/ranges/expression/reversedEmptyBackSequence.kt +++ b/compiler/testData/codegen/box/ranges/expression/reversedEmptyBackSequence.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/reversedEmptyRange.kt b/compiler/testData/codegen/box/ranges/expression/reversedEmptyRange.kt index 436528a5cd9..c62a13f4bb5 100644 --- a/compiler/testData/codegen/box/ranges/expression/reversedEmptyRange.kt +++ b/compiler/testData/codegen/box/ranges/expression/reversedEmptyRange.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/reversedInexactSteppedDownTo.kt b/compiler/testData/codegen/box/ranges/expression/reversedInexactSteppedDownTo.kt index 03d7e797926..e04ac34b17d 100644 --- a/compiler/testData/codegen/box/ranges/expression/reversedInexactSteppedDownTo.kt +++ b/compiler/testData/codegen/box/ranges/expression/reversedInexactSteppedDownTo.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/reversedRange.kt b/compiler/testData/codegen/box/ranges/expression/reversedRange.kt index 098c28bf0aa..a3174cd3722 100644 --- a/compiler/testData/codegen/box/ranges/expression/reversedRange.kt +++ b/compiler/testData/codegen/box/ranges/expression/reversedRange.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/reversedSimpleSteppedRange.kt b/compiler/testData/codegen/box/ranges/expression/reversedSimpleSteppedRange.kt index 43771a5928e..b2bf8399eca 100644 --- a/compiler/testData/codegen/box/ranges/expression/reversedSimpleSteppedRange.kt +++ b/compiler/testData/codegen/box/ranges/expression/reversedSimpleSteppedRange.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/simpleDownTo.kt b/compiler/testData/codegen/box/ranges/expression/simpleDownTo.kt index ad8974021a5..5bcc780e846 100644 --- a/compiler/testData/codegen/box/ranges/expression/simpleDownTo.kt +++ b/compiler/testData/codegen/box/ranges/expression/simpleDownTo.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/simpleRange.kt b/compiler/testData/codegen/box/ranges/expression/simpleRange.kt index 306ab1d6ed0..ab0c1a6357b 100644 --- a/compiler/testData/codegen/box/ranges/expression/simpleRange.kt +++ b/compiler/testData/codegen/box/ranges/expression/simpleRange.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/simpleRangeWithNonConstantEnds.kt b/compiler/testData/codegen/box/ranges/expression/simpleRangeWithNonConstantEnds.kt index 42a9d01dcf6..0071936e665 100644 --- a/compiler/testData/codegen/box/ranges/expression/simpleRangeWithNonConstantEnds.kt +++ b/compiler/testData/codegen/box/ranges/expression/simpleRangeWithNonConstantEnds.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/simpleSteppedDownTo.kt b/compiler/testData/codegen/box/ranges/expression/simpleSteppedDownTo.kt index 2b5ad22293a..f837143796b 100644 --- a/compiler/testData/codegen/box/ranges/expression/simpleSteppedDownTo.kt +++ b/compiler/testData/codegen/box/ranges/expression/simpleSteppedDownTo.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/simpleSteppedRange.kt b/compiler/testData/codegen/box/ranges/expression/simpleSteppedRange.kt index 132a8fc2a88..057daf28d5c 100644 --- a/compiler/testData/codegen/box/ranges/expression/simpleSteppedRange.kt +++ b/compiler/testData/codegen/box/ranges/expression/simpleSteppedRange.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/emptyDownto.kt b/compiler/testData/codegen/box/ranges/literal/emptyDownto.kt index ac36fbd5d62..450642d1a70 100644 --- a/compiler/testData/codegen/box/ranges/literal/emptyDownto.kt +++ b/compiler/testData/codegen/box/ranges/literal/emptyDownto.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/emptyRange.kt b/compiler/testData/codegen/box/ranges/literal/emptyRange.kt index e977c4b9461..4a6492a25d6 100644 --- a/compiler/testData/codegen/box/ranges/literal/emptyRange.kt +++ b/compiler/testData/codegen/box/ranges/literal/emptyRange.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/inexactDownToMinValue.kt b/compiler/testData/codegen/box/ranges/literal/inexactDownToMinValue.kt index 72d497bb477..76324817e51 100644 --- a/compiler/testData/codegen/box/ranges/literal/inexactDownToMinValue.kt +++ b/compiler/testData/codegen/box/ranges/literal/inexactDownToMinValue.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // TODO: muted automatically, investigate should it be ran for JS or not // IGNORE_BACKEND: JS diff --git a/compiler/testData/codegen/box/ranges/literal/inexactSteppedDownTo.kt b/compiler/testData/codegen/box/ranges/literal/inexactSteppedDownTo.kt index 1696d7a1cb9..f4876f395f1 100644 --- a/compiler/testData/codegen/box/ranges/literal/inexactSteppedDownTo.kt +++ b/compiler/testData/codegen/box/ranges/literal/inexactSteppedDownTo.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/inexactSteppedRange.kt b/compiler/testData/codegen/box/ranges/literal/inexactSteppedRange.kt index b7aec1243ad..aa48f30db1b 100644 --- a/compiler/testData/codegen/box/ranges/literal/inexactSteppedRange.kt +++ b/compiler/testData/codegen/box/ranges/literal/inexactSteppedRange.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/inexactToMaxValue.kt b/compiler/testData/codegen/box/ranges/literal/inexactToMaxValue.kt index 9de5402fe11..a34b541aeeb 100644 --- a/compiler/testData/codegen/box/ranges/literal/inexactToMaxValue.kt +++ b/compiler/testData/codegen/box/ranges/literal/inexactToMaxValue.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // TODO: muted automatically, investigate should it be ran for JS or not // IGNORE_BACKEND: JS diff --git a/compiler/testData/codegen/box/ranges/literal/maxValueMinusTwoToMaxValue.kt b/compiler/testData/codegen/box/ranges/literal/maxValueMinusTwoToMaxValue.kt index dabb4b7eec1..7d79b405feb 100644 --- a/compiler/testData/codegen/box/ranges/literal/maxValueMinusTwoToMaxValue.kt +++ b/compiler/testData/codegen/box/ranges/literal/maxValueMinusTwoToMaxValue.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // TODO: muted automatically, investigate should it be ran for JS or not // IGNORE_BACKEND: JS diff --git a/compiler/testData/codegen/box/ranges/literal/maxValueToMaxValue.kt b/compiler/testData/codegen/box/ranges/literal/maxValueToMaxValue.kt index 5c174a24557..a738edb5ee5 100644 --- a/compiler/testData/codegen/box/ranges/literal/maxValueToMaxValue.kt +++ b/compiler/testData/codegen/box/ranges/literal/maxValueToMaxValue.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // TODO: muted automatically, investigate should it be ran for JS or not // IGNORE_BACKEND: JS diff --git a/compiler/testData/codegen/box/ranges/literal/maxValueToMinValue.kt b/compiler/testData/codegen/box/ranges/literal/maxValueToMinValue.kt index bfb2f4c0d39..ac7785afa50 100644 --- a/compiler/testData/codegen/box/ranges/literal/maxValueToMinValue.kt +++ b/compiler/testData/codegen/box/ranges/literal/maxValueToMinValue.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // TODO: muted automatically, investigate should it be ran for JS or not // IGNORE_BACKEND: JS diff --git a/compiler/testData/codegen/box/ranges/literal/oneElementDownTo.kt b/compiler/testData/codegen/box/ranges/literal/oneElementDownTo.kt index 9a5fd5f8589..38dc67612b3 100644 --- a/compiler/testData/codegen/box/ranges/literal/oneElementDownTo.kt +++ b/compiler/testData/codegen/box/ranges/literal/oneElementDownTo.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/oneElementRange.kt b/compiler/testData/codegen/box/ranges/literal/oneElementRange.kt index 3d7dc4fec09..616626f6782 100644 --- a/compiler/testData/codegen/box/ranges/literal/oneElementRange.kt +++ b/compiler/testData/codegen/box/ranges/literal/oneElementRange.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/openRange.kt b/compiler/testData/codegen/box/ranges/literal/openRange.kt index 488600a9207..b02b2e35889 100644 --- a/compiler/testData/codegen/box/ranges/literal/openRange.kt +++ b/compiler/testData/codegen/box/ranges/literal/openRange.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/progressionDownToMinValue.kt b/compiler/testData/codegen/box/ranges/literal/progressionDownToMinValue.kt index a62ca845133..28e092d27dd 100644 --- a/compiler/testData/codegen/box/ranges/literal/progressionDownToMinValue.kt +++ b/compiler/testData/codegen/box/ranges/literal/progressionDownToMinValue.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // TODO: muted automatically, investigate should it be ran for JS or not // IGNORE_BACKEND: JS diff --git a/compiler/testData/codegen/box/ranges/literal/progressionMaxValueMinusTwoToMaxValue.kt b/compiler/testData/codegen/box/ranges/literal/progressionMaxValueMinusTwoToMaxValue.kt index ed239fc2925..dcba36ab643 100644 --- a/compiler/testData/codegen/box/ranges/literal/progressionMaxValueMinusTwoToMaxValue.kt +++ b/compiler/testData/codegen/box/ranges/literal/progressionMaxValueMinusTwoToMaxValue.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // TODO: muted automatically, investigate should it be ran for JS or not // IGNORE_BACKEND: JS diff --git a/compiler/testData/codegen/box/ranges/literal/progressionMaxValueToMaxValue.kt b/compiler/testData/codegen/box/ranges/literal/progressionMaxValueToMaxValue.kt index af2334ee40b..06d4ccc37a9 100644 --- a/compiler/testData/codegen/box/ranges/literal/progressionMaxValueToMaxValue.kt +++ b/compiler/testData/codegen/box/ranges/literal/progressionMaxValueToMaxValue.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // TODO: muted automatically, investigate should it be ran for JS or not // IGNORE_BACKEND: JS diff --git a/compiler/testData/codegen/box/ranges/literal/progressionMaxValueToMinValue.kt b/compiler/testData/codegen/box/ranges/literal/progressionMaxValueToMinValue.kt index 7a8a189025d..772f38150ad 100644 --- a/compiler/testData/codegen/box/ranges/literal/progressionMaxValueToMinValue.kt +++ b/compiler/testData/codegen/box/ranges/literal/progressionMaxValueToMinValue.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // TODO: muted automatically, investigate should it be ran for JS or not // IGNORE_BACKEND: JS diff --git a/compiler/testData/codegen/box/ranges/literal/progressionMinValueToMinValue.kt b/compiler/testData/codegen/box/ranges/literal/progressionMinValueToMinValue.kt index b0f74526ec6..77762e90144 100644 --- a/compiler/testData/codegen/box/ranges/literal/progressionMinValueToMinValue.kt +++ b/compiler/testData/codegen/box/ranges/literal/progressionMinValueToMinValue.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // TODO: muted automatically, investigate should it be ran for JS or not // IGNORE_BACKEND: JS diff --git a/compiler/testData/codegen/box/ranges/literal/reversedBackSequence.kt b/compiler/testData/codegen/box/ranges/literal/reversedBackSequence.kt index f4cd7ae0df6..6a261eaea9a 100644 --- a/compiler/testData/codegen/box/ranges/literal/reversedBackSequence.kt +++ b/compiler/testData/codegen/box/ranges/literal/reversedBackSequence.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/reversedEmptyBackSequence.kt b/compiler/testData/codegen/box/ranges/literal/reversedEmptyBackSequence.kt index 9c2bab57838..b1a5cff8433 100644 --- a/compiler/testData/codegen/box/ranges/literal/reversedEmptyBackSequence.kt +++ b/compiler/testData/codegen/box/ranges/literal/reversedEmptyBackSequence.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/reversedEmptyRange.kt b/compiler/testData/codegen/box/ranges/literal/reversedEmptyRange.kt index c2442883533..5538e8a5947 100644 --- a/compiler/testData/codegen/box/ranges/literal/reversedEmptyRange.kt +++ b/compiler/testData/codegen/box/ranges/literal/reversedEmptyRange.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/reversedInexactSteppedDownTo.kt b/compiler/testData/codegen/box/ranges/literal/reversedInexactSteppedDownTo.kt index 63c431ab3c8..b2f32252298 100644 --- a/compiler/testData/codegen/box/ranges/literal/reversedInexactSteppedDownTo.kt +++ b/compiler/testData/codegen/box/ranges/literal/reversedInexactSteppedDownTo.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/reversedRange.kt b/compiler/testData/codegen/box/ranges/literal/reversedRange.kt index 1d4e6649437..db13553480f 100644 --- a/compiler/testData/codegen/box/ranges/literal/reversedRange.kt +++ b/compiler/testData/codegen/box/ranges/literal/reversedRange.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/reversedSimpleSteppedRange.kt b/compiler/testData/codegen/box/ranges/literal/reversedSimpleSteppedRange.kt index be85c5020c0..4aa0ff7c60b 100644 --- a/compiler/testData/codegen/box/ranges/literal/reversedSimpleSteppedRange.kt +++ b/compiler/testData/codegen/box/ranges/literal/reversedSimpleSteppedRange.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/simpleDownTo.kt b/compiler/testData/codegen/box/ranges/literal/simpleDownTo.kt index 13bdb9a25e9..63361c13e0a 100644 --- a/compiler/testData/codegen/box/ranges/literal/simpleDownTo.kt +++ b/compiler/testData/codegen/box/ranges/literal/simpleDownTo.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/simpleRange.kt b/compiler/testData/codegen/box/ranges/literal/simpleRange.kt index 3a074a477d1..00fdb9079c7 100644 --- a/compiler/testData/codegen/box/ranges/literal/simpleRange.kt +++ b/compiler/testData/codegen/box/ranges/literal/simpleRange.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/simpleRangeWithNonConstantEnds.kt b/compiler/testData/codegen/box/ranges/literal/simpleRangeWithNonConstantEnds.kt index b242f085369..a1b9db60f89 100644 --- a/compiler/testData/codegen/box/ranges/literal/simpleRangeWithNonConstantEnds.kt +++ b/compiler/testData/codegen/box/ranges/literal/simpleRangeWithNonConstantEnds.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/simpleSteppedDownTo.kt b/compiler/testData/codegen/box/ranges/literal/simpleSteppedDownTo.kt index 62dd8c70251..020c85709fc 100644 --- a/compiler/testData/codegen/box/ranges/literal/simpleSteppedDownTo.kt +++ b/compiler/testData/codegen/box/ranges/literal/simpleSteppedDownTo.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/simpleSteppedRange.kt b/compiler/testData/codegen/box/ranges/literal/simpleSteppedRange.kt index 4552ee0f9f7..9969d575e78 100644 --- a/compiler/testData/codegen/box/ranges/literal/simpleSteppedRange.kt +++ b/compiler/testData/codegen/box/ranges/literal/simpleSteppedRange.kt @@ -1,3 +1,6 @@ +// TODO: muted automatically, investigate should it be ran for JS_IR or not +// IGNORE_BACKEND: JS_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/tests/org/jetbrains/kotlin/generators/tests/GenerateRangesCodegenTestData.java b/compiler/tests/org/jetbrains/kotlin/generators/tests/GenerateRangesCodegenTestData.java index de9161ca2b6..95a59153290 100644 --- a/compiler/tests/org/jetbrains/kotlin/generators/tests/GenerateRangesCodegenTestData.java +++ b/compiler/tests/org/jetbrains/kotlin/generators/tests/GenerateRangesCodegenTestData.java @@ -146,6 +146,9 @@ public class GenerateRangesCodegenTestData { throw new AssertionError(e); } + // Ranges are not supported in JS_IR yet + writeIgnoreBackendDirective(out, "JS_IR"); + if (IGNORED_FOR_JS_BACKEND.contains(file.getName())) { writeIgnoreBackendDirective(out, "JS"); }