From 769344569d7e6b79437221efd6d815e441dc682a Mon Sep 17 00:00:00 2001 From: Georgy Bronnikov Date: Tue, 28 Aug 2018 21:37:06 +0300 Subject: [PATCH] Mute tests that are new to 1.3-M2 --- .../testData/codegen/box/functions/bigArity/callFromJava.kt | 1 + .../functions/bigArity/callWithIncorrectNumberOfArguments.kt | 1 + .../testData/codegen/box/functions/bigArity/function255.kt | 1 + .../codegen/box/functions/bigArity/invokeCallableReference.kt | 1 + .../testData/codegen/box/functions/bigArity/invokeLambda.kt | 1 + compiler/testData/codegen/box/functions/bigArity/javaLambda.kt | 1 + 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 +++ .../box/ranges/expression/overflowZeroDownToMaxValue.kt | 3 +++ .../codegen/box/ranges/expression/overflowZeroToMinValue.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/overflowZeroDownToMaxValue.kt | 3 +++ .../codegen/box/ranges/literal/overflowZeroToMinValue.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 +++ compiler/testData/codegen/box/reflection/call/bigArity.kt | 2 +- .../testData/codegen/box/reflection/parameters/bigArity.kt | 2 +- .../kotlin/generators/tests/GenerateRangesCodegenTestData.java | 3 ++- 69 files changed, 190 insertions(+), 3 deletions(-) diff --git a/compiler/testData/codegen/box/functions/bigArity/callFromJava.kt b/compiler/testData/codegen/box/functions/bigArity/callFromJava.kt index 6849e865c86..2717a3d5e86 100644 --- a/compiler/testData/codegen/box/functions/bigArity/callFromJava.kt +++ b/compiler/testData/codegen/box/functions/bigArity/callFromJava.kt @@ -1,6 +1,7 @@ // !LANGUAGE: +FunctionTypesWithBigArity // WITH_RUNTIME // TARGET_BACKEND: JVM +// IGNORE_BACKEND: JVM_IR // FILE: J.java import kotlin.jvm.functions.FunctionN; diff --git a/compiler/testData/codegen/box/functions/bigArity/callWithIncorrectNumberOfArguments.kt b/compiler/testData/codegen/box/functions/bigArity/callWithIncorrectNumberOfArguments.kt index aa7464771aa..1cda4cf6a83 100644 --- a/compiler/testData/codegen/box/functions/bigArity/callWithIncorrectNumberOfArguments.kt +++ b/compiler/testData/codegen/box/functions/bigArity/callWithIncorrectNumberOfArguments.kt @@ -1,6 +1,7 @@ // !LANGUAGE: +FunctionTypesWithBigArity // WITH_RUNTIME // TARGET_BACKEND: JVM +// IGNORE_BACKEND: JVM_IR // FILE: J.java // import kotlin.jvm.functions.Arity; diff --git a/compiler/testData/codegen/box/functions/bigArity/function255.kt b/compiler/testData/codegen/box/functions/bigArity/function255.kt index 39c6066e8db..a36e4f88dd4 100644 --- a/compiler/testData/codegen/box/functions/bigArity/function255.kt +++ b/compiler/testData/codegen/box/functions/bigArity/function255.kt @@ -1,5 +1,6 @@ // !LANGUAGE: +FunctionTypesWithBigArity // IGNORE_BACKEND: JS_IR +// IGNORE_BACKEND: JVM_IR class A(val value: Int) { // for (i in 1..254) { print("p${"%03d".format(i)}: A, "); if (i % 10 == 0) println() }; println() diff --git a/compiler/testData/codegen/box/functions/bigArity/invokeCallableReference.kt b/compiler/testData/codegen/box/functions/bigArity/invokeCallableReference.kt index c9509a07ba5..df604171b70 100644 --- a/compiler/testData/codegen/box/functions/bigArity/invokeCallableReference.kt +++ b/compiler/testData/codegen/box/functions/bigArity/invokeCallableReference.kt @@ -1,4 +1,5 @@ // !LANGUAGE: +FunctionTypesWithBigArity +// IGNORE_BACKEND: JVM_IR class A diff --git a/compiler/testData/codegen/box/functions/bigArity/invokeLambda.kt b/compiler/testData/codegen/box/functions/bigArity/invokeLambda.kt index afb24c958db..2ea0367ad0b 100644 --- a/compiler/testData/codegen/box/functions/bigArity/invokeLambda.kt +++ b/compiler/testData/codegen/box/functions/bigArity/invokeLambda.kt @@ -1,4 +1,5 @@ // !LANGUAGE: +FunctionTypesWithBigArity +// IGNORE_BACKEND: JVM_IR class A(val value: Int) diff --git a/compiler/testData/codegen/box/functions/bigArity/javaLambda.kt b/compiler/testData/codegen/box/functions/bigArity/javaLambda.kt index fb8080cecb7..c0545087ce2 100644 --- a/compiler/testData/codegen/box/functions/bigArity/javaLambda.kt +++ b/compiler/testData/codegen/box/functions/bigArity/javaLambda.kt @@ -1,6 +1,7 @@ // !LANGUAGE: +FunctionTypesWithBigArity // WITH_RUNTIME // TARGET_BACKEND: JVM +// IGNORE_BACKEND: JVM_IR // FILE: J.java // import kotlin.jvm.functions.Arity; diff --git a/compiler/testData/codegen/box/ranges/expression/emptyDownto.kt b/compiler/testData/codegen/box/ranges/expression/emptyDownto.kt index 78d71e249bb..676e3390a3f 100644 --- a/compiler/testData/codegen/box/ranges/expression/emptyDownto.kt +++ b/compiler/testData/codegen/box/ranges/expression/emptyDownto.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 cdfab1e7d65..90d35ca873c 100644 --- a/compiler/testData/codegen/box/ranges/expression/emptyRange.kt +++ b/compiler/testData/codegen/box/ranges/expression/emptyRange.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 9b9f1ac4e3c..e146534d02e 100644 --- a/compiler/testData/codegen/box/ranges/expression/inexactDownToMinValue.kt +++ b/compiler/testData/codegen/box/ranges/expression/inexactDownToMinValue.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/inexactSteppedDownTo.kt b/compiler/testData/codegen/box/ranges/expression/inexactSteppedDownTo.kt index 511ac1e6994..ff082a4d829 100644 --- a/compiler/testData/codegen/box/ranges/expression/inexactSteppedDownTo.kt +++ b/compiler/testData/codegen/box/ranges/expression/inexactSteppedDownTo.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 4eb0d644fcd..7ba59168a47 100644 --- a/compiler/testData/codegen/box/ranges/expression/inexactSteppedRange.kt +++ b/compiler/testData/codegen/box/ranges/expression/inexactSteppedRange.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 8bfb27c8ec1..74099b5ee8c 100644 --- a/compiler/testData/codegen/box/ranges/expression/inexactToMaxValue.kt +++ b/compiler/testData/codegen/box/ranges/expression/inexactToMaxValue.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/maxValueMinusTwoToMaxValue.kt b/compiler/testData/codegen/box/ranges/expression/maxValueMinusTwoToMaxValue.kt index 49da4538fbf..9551ccf9531 100644 --- a/compiler/testData/codegen/box/ranges/expression/maxValueMinusTwoToMaxValue.kt +++ b/compiler/testData/codegen/box/ranges/expression/maxValueMinusTwoToMaxValue.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/maxValueToMaxValue.kt b/compiler/testData/codegen/box/ranges/expression/maxValueToMaxValue.kt index 3553dd68f6e..ab2399d4baf 100644 --- a/compiler/testData/codegen/box/ranges/expression/maxValueToMaxValue.kt +++ b/compiler/testData/codegen/box/ranges/expression/maxValueToMaxValue.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/maxValueToMinValue.kt b/compiler/testData/codegen/box/ranges/expression/maxValueToMinValue.kt index 3dc2ff67d5b..7c24d7b28a3 100644 --- a/compiler/testData/codegen/box/ranges/expression/maxValueToMinValue.kt +++ b/compiler/testData/codegen/box/ranges/expression/maxValueToMinValue.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/oneElementDownTo.kt b/compiler/testData/codegen/box/ranges/expression/oneElementDownTo.kt index 544e1d7432e..aa71c78bb2e 100644 --- a/compiler/testData/codegen/box/ranges/expression/oneElementDownTo.kt +++ b/compiler/testData/codegen/box/ranges/expression/oneElementDownTo.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 e309d8b1e19..40460d60b8f 100644 --- a/compiler/testData/codegen/box/ranges/expression/oneElementRange.kt +++ b/compiler/testData/codegen/box/ranges/expression/oneElementRange.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 f877d95010f..cd1b50b4f96 100644 --- a/compiler/testData/codegen/box/ranges/expression/openRange.kt +++ b/compiler/testData/codegen/box/ranges/expression/openRange.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/overflowZeroDownToMaxValue.kt b/compiler/testData/codegen/box/ranges/expression/overflowZeroDownToMaxValue.kt index 1e1d855cec6..2ae112052c3 100644 --- a/compiler/testData/codegen/box/ranges/expression/overflowZeroDownToMaxValue.kt +++ b/compiler/testData/codegen/box/ranges/expression/overflowZeroDownToMaxValue.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/overflowZeroToMinValue.kt b/compiler/testData/codegen/box/ranges/expression/overflowZeroToMinValue.kt index b21e2754b3c..a6fef4623ff 100644 --- a/compiler/testData/codegen/box/ranges/expression/overflowZeroToMinValue.kt +++ b/compiler/testData/codegen/box/ranges/expression/overflowZeroToMinValue.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 99b48a8cb3d..51cef35724d 100644 --- a/compiler/testData/codegen/box/ranges/expression/progressionDownToMinValue.kt +++ b/compiler/testData/codegen/box/ranges/expression/progressionDownToMinValue.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/progressionMaxValueMinusTwoToMaxValue.kt b/compiler/testData/codegen/box/ranges/expression/progressionMaxValueMinusTwoToMaxValue.kt index 124c9bf859c..38b5e2a65c0 100644 --- a/compiler/testData/codegen/box/ranges/expression/progressionMaxValueMinusTwoToMaxValue.kt +++ b/compiler/testData/codegen/box/ranges/expression/progressionMaxValueMinusTwoToMaxValue.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/progressionMaxValueToMaxValue.kt b/compiler/testData/codegen/box/ranges/expression/progressionMaxValueToMaxValue.kt index 8961195adcf..cf1fbd8ac51 100644 --- a/compiler/testData/codegen/box/ranges/expression/progressionMaxValueToMaxValue.kt +++ b/compiler/testData/codegen/box/ranges/expression/progressionMaxValueToMaxValue.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/progressionMaxValueToMinValue.kt b/compiler/testData/codegen/box/ranges/expression/progressionMaxValueToMinValue.kt index 3d636e34668..4945139fcad 100644 --- a/compiler/testData/codegen/box/ranges/expression/progressionMaxValueToMinValue.kt +++ b/compiler/testData/codegen/box/ranges/expression/progressionMaxValueToMinValue.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/progressionMinValueToMinValue.kt b/compiler/testData/codegen/box/ranges/expression/progressionMinValueToMinValue.kt index 5fd3aebd699..21cf7f4af01 100644 --- a/compiler/testData/codegen/box/ranges/expression/progressionMinValueToMinValue.kt +++ b/compiler/testData/codegen/box/ranges/expression/progressionMinValueToMinValue.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/expression/reversedBackSequence.kt b/compiler/testData/codegen/box/ranges/expression/reversedBackSequence.kt index 7662bd4139d..86d29b0a6a5 100644 --- a/compiler/testData/codegen/box/ranges/expression/reversedBackSequence.kt +++ b/compiler/testData/codegen/box/ranges/expression/reversedBackSequence.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 bf6e04188fe..0e48e2a7a0e 100644 --- a/compiler/testData/codegen/box/ranges/expression/reversedEmptyBackSequence.kt +++ b/compiler/testData/codegen/box/ranges/expression/reversedEmptyBackSequence.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 aad563b1ed5..038ebce08a3 100644 --- a/compiler/testData/codegen/box/ranges/expression/reversedEmptyRange.kt +++ b/compiler/testData/codegen/box/ranges/expression/reversedEmptyRange.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 ff636cce3f6..4e692c527cf 100644 --- a/compiler/testData/codegen/box/ranges/expression/reversedInexactSteppedDownTo.kt +++ b/compiler/testData/codegen/box/ranges/expression/reversedInexactSteppedDownTo.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 e49db2a6d2e..3c05c4ec436 100644 --- a/compiler/testData/codegen/box/ranges/expression/reversedRange.kt +++ b/compiler/testData/codegen/box/ranges/expression/reversedRange.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 1241ee35a15..2ca41ad5494 100644 --- a/compiler/testData/codegen/box/ranges/expression/reversedSimpleSteppedRange.kt +++ b/compiler/testData/codegen/box/ranges/expression/reversedSimpleSteppedRange.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 efc7846b708..7c17e8f3824 100644 --- a/compiler/testData/codegen/box/ranges/expression/simpleDownTo.kt +++ b/compiler/testData/codegen/box/ranges/expression/simpleDownTo.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 0ac5f8cb895..c9a2fb6ccf1 100644 --- a/compiler/testData/codegen/box/ranges/expression/simpleRange.kt +++ b/compiler/testData/codegen/box/ranges/expression/simpleRange.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 c361b6d2d9f..7e0917ab832 100644 --- a/compiler/testData/codegen/box/ranges/expression/simpleRangeWithNonConstantEnds.kt +++ b/compiler/testData/codegen/box/ranges/expression/simpleRangeWithNonConstantEnds.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 aadbefc78d5..303dcb45b69 100644 --- a/compiler/testData/codegen/box/ranges/expression/simpleSteppedDownTo.kt +++ b/compiler/testData/codegen/box/ranges/expression/simpleSteppedDownTo.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 8a9af6ff1e5..d7ad9b5a894 100644 --- a/compiler/testData/codegen/box/ranges/expression/simpleSteppedRange.kt +++ b/compiler/testData/codegen/box/ranges/expression/simpleSteppedRange.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 a78e066eb92..4f77f3a3d50 100644 --- a/compiler/testData/codegen/box/ranges/literal/emptyDownto.kt +++ b/compiler/testData/codegen/box/ranges/literal/emptyDownto.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 221256485e1..0d6381c685b 100644 --- a/compiler/testData/codegen/box/ranges/literal/emptyRange.kt +++ b/compiler/testData/codegen/box/ranges/literal/emptyRange.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 b547ec59189..5c3c903806d 100644 --- a/compiler/testData/codegen/box/ranges/literal/inexactDownToMinValue.kt +++ b/compiler/testData/codegen/box/ranges/literal/inexactDownToMinValue.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/inexactSteppedDownTo.kt b/compiler/testData/codegen/box/ranges/literal/inexactSteppedDownTo.kt index 00dd37af3f5..eefb1dc7607 100644 --- a/compiler/testData/codegen/box/ranges/literal/inexactSteppedDownTo.kt +++ b/compiler/testData/codegen/box/ranges/literal/inexactSteppedDownTo.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 329ceebec92..881b1b1c45d 100644 --- a/compiler/testData/codegen/box/ranges/literal/inexactSteppedRange.kt +++ b/compiler/testData/codegen/box/ranges/literal/inexactSteppedRange.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 ce873b8ec74..d65eba48651 100644 --- a/compiler/testData/codegen/box/ranges/literal/inexactToMaxValue.kt +++ b/compiler/testData/codegen/box/ranges/literal/inexactToMaxValue.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/maxValueMinusTwoToMaxValue.kt b/compiler/testData/codegen/box/ranges/literal/maxValueMinusTwoToMaxValue.kt index dc366831f25..506ec4a7f1d 100644 --- a/compiler/testData/codegen/box/ranges/literal/maxValueMinusTwoToMaxValue.kt +++ b/compiler/testData/codegen/box/ranges/literal/maxValueMinusTwoToMaxValue.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/maxValueToMaxValue.kt b/compiler/testData/codegen/box/ranges/literal/maxValueToMaxValue.kt index fac9d8d6f7b..580013f5d58 100644 --- a/compiler/testData/codegen/box/ranges/literal/maxValueToMaxValue.kt +++ b/compiler/testData/codegen/box/ranges/literal/maxValueToMaxValue.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/maxValueToMinValue.kt b/compiler/testData/codegen/box/ranges/literal/maxValueToMinValue.kt index c6759edb93c..1c9eb1e3f99 100644 --- a/compiler/testData/codegen/box/ranges/literal/maxValueToMinValue.kt +++ b/compiler/testData/codegen/box/ranges/literal/maxValueToMinValue.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/oneElementDownTo.kt b/compiler/testData/codegen/box/ranges/literal/oneElementDownTo.kt index 353db829d50..3f2ed575777 100644 --- a/compiler/testData/codegen/box/ranges/literal/oneElementDownTo.kt +++ b/compiler/testData/codegen/box/ranges/literal/oneElementDownTo.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 a014bf9f239..35282c0146b 100644 --- a/compiler/testData/codegen/box/ranges/literal/oneElementRange.kt +++ b/compiler/testData/codegen/box/ranges/literal/oneElementRange.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 73f62c5b965..7d755b1ee7f 100644 --- a/compiler/testData/codegen/box/ranges/literal/openRange.kt +++ b/compiler/testData/codegen/box/ranges/literal/openRange.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/overflowZeroDownToMaxValue.kt b/compiler/testData/codegen/box/ranges/literal/overflowZeroDownToMaxValue.kt index 33d07e35974..c34ee8264bc 100644 --- a/compiler/testData/codegen/box/ranges/literal/overflowZeroDownToMaxValue.kt +++ b/compiler/testData/codegen/box/ranges/literal/overflowZeroDownToMaxValue.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/overflowZeroToMinValue.kt b/compiler/testData/codegen/box/ranges/literal/overflowZeroToMinValue.kt index 4c28c429d79..0a82d4f3c7d 100644 --- a/compiler/testData/codegen/box/ranges/literal/overflowZeroToMinValue.kt +++ b/compiler/testData/codegen/box/ranges/literal/overflowZeroToMinValue.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 4c223e371bd..f7a16c80114 100644 --- a/compiler/testData/codegen/box/ranges/literal/progressionDownToMinValue.kt +++ b/compiler/testData/codegen/box/ranges/literal/progressionDownToMinValue.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/progressionMaxValueMinusTwoToMaxValue.kt b/compiler/testData/codegen/box/ranges/literal/progressionMaxValueMinusTwoToMaxValue.kt index 096e0429148..a4841f9ebe9 100644 --- a/compiler/testData/codegen/box/ranges/literal/progressionMaxValueMinusTwoToMaxValue.kt +++ b/compiler/testData/codegen/box/ranges/literal/progressionMaxValueMinusTwoToMaxValue.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/progressionMaxValueToMaxValue.kt b/compiler/testData/codegen/box/ranges/literal/progressionMaxValueToMaxValue.kt index 6887a943b32..f0d293e2303 100644 --- a/compiler/testData/codegen/box/ranges/literal/progressionMaxValueToMaxValue.kt +++ b/compiler/testData/codegen/box/ranges/literal/progressionMaxValueToMaxValue.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/progressionMaxValueToMinValue.kt b/compiler/testData/codegen/box/ranges/literal/progressionMaxValueToMinValue.kt index 69707b704e7..9c23ae71d0d 100644 --- a/compiler/testData/codegen/box/ranges/literal/progressionMaxValueToMinValue.kt +++ b/compiler/testData/codegen/box/ranges/literal/progressionMaxValueToMinValue.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/progressionMinValueToMinValue.kt b/compiler/testData/codegen/box/ranges/literal/progressionMinValueToMinValue.kt index 9f3be9760f8..6b2c6f31697 100644 --- a/compiler/testData/codegen/box/ranges/literal/progressionMinValueToMinValue.kt +++ b/compiler/testData/codegen/box/ranges/literal/progressionMinValueToMinValue.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/ranges/literal/reversedBackSequence.kt b/compiler/testData/codegen/box/ranges/literal/reversedBackSequence.kt index f741b0a2a66..2afe50ed762 100644 --- a/compiler/testData/codegen/box/ranges/literal/reversedBackSequence.kt +++ b/compiler/testData/codegen/box/ranges/literal/reversedBackSequence.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 d06a9d53eb6..ec67083004c 100644 --- a/compiler/testData/codegen/box/ranges/literal/reversedEmptyBackSequence.kt +++ b/compiler/testData/codegen/box/ranges/literal/reversedEmptyBackSequence.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 bb018f965fb..afd9c689c33 100644 --- a/compiler/testData/codegen/box/ranges/literal/reversedEmptyRange.kt +++ b/compiler/testData/codegen/box/ranges/literal/reversedEmptyRange.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 afd226096a8..8396bf0f958 100644 --- a/compiler/testData/codegen/box/ranges/literal/reversedInexactSteppedDownTo.kt +++ b/compiler/testData/codegen/box/ranges/literal/reversedInexactSteppedDownTo.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 d3694619443..6173cf10da9 100644 --- a/compiler/testData/codegen/box/ranges/literal/reversedRange.kt +++ b/compiler/testData/codegen/box/ranges/literal/reversedRange.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 bfb8897e875..f2c0db938fc 100644 --- a/compiler/testData/codegen/box/ranges/literal/reversedSimpleSteppedRange.kt +++ b/compiler/testData/codegen/box/ranges/literal/reversedSimpleSteppedRange.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 13b2f0a5bca..1f5b1eb874d 100644 --- a/compiler/testData/codegen/box/ranges/literal/simpleDownTo.kt +++ b/compiler/testData/codegen/box/ranges/literal/simpleDownTo.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 a7da09b7dfc..7a44f916ee0 100644 --- a/compiler/testData/codegen/box/ranges/literal/simpleRange.kt +++ b/compiler/testData/codegen/box/ranges/literal/simpleRange.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 b48fff633bd..a91faa152ec 100644 --- a/compiler/testData/codegen/box/ranges/literal/simpleRangeWithNonConstantEnds.kt +++ b/compiler/testData/codegen/box/ranges/literal/simpleRangeWithNonConstantEnds.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 e768b251211..bd410e26e8a 100644 --- a/compiler/testData/codegen/box/ranges/literal/simpleSteppedDownTo.kt +++ b/compiler/testData/codegen/box/ranges/literal/simpleSteppedDownTo.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_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 9ca857c3eb2..9f407ee2624 100644 --- a/compiler/testData/codegen/box/ranges/literal/simpleSteppedRange.kt +++ b/compiler/testData/codegen/box/ranges/literal/simpleSteppedRange.kt @@ -1,6 +1,9 @@ // 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 JVM_IR or not +// IGNORE_BACKEND: JVM_IR + // Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT! // WITH_RUNTIME diff --git a/compiler/testData/codegen/box/reflection/call/bigArity.kt b/compiler/testData/codegen/box/reflection/call/bigArity.kt index 43d32de4734..25ff5976250 100644 --- a/compiler/testData/codegen/box/reflection/call/bigArity.kt +++ b/compiler/testData/codegen/box/reflection/call/bigArity.kt @@ -1,5 +1,5 @@ // !LANGUAGE: +FunctionTypesWithBigArity -// IGNORE_BACKEND: JS_IR, JS, NATIVE +// IGNORE_BACKEND: JS_IR, JS, JVM_IR, NATIVE // WITH_REFLECT class A { diff --git a/compiler/testData/codegen/box/reflection/parameters/bigArity.kt b/compiler/testData/codegen/box/reflection/parameters/bigArity.kt index c22d4cb175b..d0c540b4562 100644 --- a/compiler/testData/codegen/box/reflection/parameters/bigArity.kt +++ b/compiler/testData/codegen/box/reflection/parameters/bigArity.kt @@ -1,5 +1,5 @@ // !LANGUAGE: +FunctionTypesWithBigArity -// IGNORE_BACKEND: JS_IR, JS, NATIVE +// IGNORE_BACKEND: JS_IR, JS, JVM_IR, NATIVE // WITH_REFLECT import kotlin.test.assertEquals diff --git a/compiler/tests/org/jetbrains/kotlin/generators/tests/GenerateRangesCodegenTestData.java b/compiler/tests/org/jetbrains/kotlin/generators/tests/GenerateRangesCodegenTestData.java index b1acfcbcc88..7f1b92432ae 100644 --- a/compiler/tests/org/jetbrains/kotlin/generators/tests/GenerateRangesCodegenTestData.java +++ b/compiler/tests/org/jetbrains/kotlin/generators/tests/GenerateRangesCodegenTestData.java @@ -138,8 +138,9 @@ public class GenerateRangesCodegenTestData { throw new AssertionError(e); } - // Ranges are not supported in JS_IR yet + // Ranges are not supported in JS_IR, JVM_IR yet writeIgnoreBackendDirective(out, "JS_IR"); + writeIgnoreBackendDirective(out, "JVM_IR"); if (IGNORED_FOR_JS_BACKEND.contains(file.getName())) { writeIgnoreBackendDirective(out, "JS");