From c2fc017d96b2abad6d6065489ae7ae8fd94d653a Mon Sep 17 00:00:00 2001 From: Ivan Kylchik Date: Fri, 4 Jun 2021 13:11:35 +0300 Subject: [PATCH] Move `doubleArrayOf` test file to proper place in interpreter test data --- .../IrInterpreterAfterFir2IrTestGenerated.java | 12 ++++++------ .../IrInterpreterAfterPsi2IrTestGenerated.java | 12 ++++++------ .../interpreter/{ => collections}/doubleArrayOf.kt | 0 3 files changed, 12 insertions(+), 12 deletions(-) rename compiler/testData/ir/interpreter/{ => collections}/doubleArrayOf.kt (100%) diff --git a/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/ir/interpreter/IrInterpreterAfterFir2IrTestGenerated.java b/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/ir/interpreter/IrInterpreterAfterFir2IrTestGenerated.java index 554b6659e19..3462abf9838 100644 --- a/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/ir/interpreter/IrInterpreterAfterFir2IrTestGenerated.java +++ b/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/ir/interpreter/IrInterpreterAfterFir2IrTestGenerated.java @@ -121,12 +121,6 @@ public class IrInterpreterAfterFir2IrTestGenerated extends AbstractIrInterpreter runTest("compiler/testData/ir/interpreter/doWhileLoop.kt"); } - @Test - @TestMetadata("doubleArrayOf.kt") - public void testDoubleArrayOf() throws Exception { - runTest("compiler/testData/ir/interpreter/doubleArrayOf.kt"); - } - @Test @TestMetadata("elvis.kt") public void testElvis() throws Exception { @@ -382,6 +376,12 @@ public class IrInterpreterAfterFir2IrTestGenerated extends AbstractIrInterpreter runTest("compiler/testData/ir/interpreter/collections/arrayOf.kt"); } + @Test + @TestMetadata("doubleArrayOf.kt") + public void testDoubleArrayOf() throws Exception { + runTest("compiler/testData/ir/interpreter/collections/doubleArrayOf.kt"); + } + @Test @TestMetadata("doubleList.kt") public void testDoubleList() throws Exception { diff --git a/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/ir/interpreter/IrInterpreterAfterPsi2IrTestGenerated.java b/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/ir/interpreter/IrInterpreterAfterPsi2IrTestGenerated.java index 85b4e0312c8..e2286b8a07f 100644 --- a/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/ir/interpreter/IrInterpreterAfterPsi2IrTestGenerated.java +++ b/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/ir/interpreter/IrInterpreterAfterPsi2IrTestGenerated.java @@ -121,12 +121,6 @@ public class IrInterpreterAfterPsi2IrTestGenerated extends AbstractIrInterpreter runTest("compiler/testData/ir/interpreter/doWhileLoop.kt"); } - @Test - @TestMetadata("doubleArrayOf.kt") - public void testDoubleArrayOf() throws Exception { - runTest("compiler/testData/ir/interpreter/doubleArrayOf.kt"); - } - @Test @TestMetadata("elvis.kt") public void testElvis() throws Exception { @@ -382,6 +376,12 @@ public class IrInterpreterAfterPsi2IrTestGenerated extends AbstractIrInterpreter runTest("compiler/testData/ir/interpreter/collections/arrayOf.kt"); } + @Test + @TestMetadata("doubleArrayOf.kt") + public void testDoubleArrayOf() throws Exception { + runTest("compiler/testData/ir/interpreter/collections/doubleArrayOf.kt"); + } + @Test @TestMetadata("doubleList.kt") public void testDoubleList() throws Exception { diff --git a/compiler/testData/ir/interpreter/doubleArrayOf.kt b/compiler/testData/ir/interpreter/collections/doubleArrayOf.kt similarity index 100% rename from compiler/testData/ir/interpreter/doubleArrayOf.kt rename to compiler/testData/ir/interpreter/collections/doubleArrayOf.kt