From 4dc304b24e312d31ab82bbc99bf85e02db16f062 Mon Sep 17 00:00:00 2001 From: Mikhael Bogdanov Date: Thu, 7 Feb 2019 16:14:02 +0100 Subject: [PATCH] Move IrBytecodeText tests to ir package --- .../kotlin/codegen/{ => ir}/AbstractIrBytecodeTextTest.kt | 5 +++-- .../kotlin/codegen/{ => ir}/IrBytecodeTextTestGenerated.java | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) rename compiler/tests-common/tests/org/jetbrains/kotlin/codegen/{ => ir}/AbstractIrBytecodeTextTest.kt (77%) rename compiler/tests/org/jetbrains/kotlin/codegen/{ => ir}/IrBytecodeTextTestGenerated.java (99%) diff --git a/compiler/tests-common/tests/org/jetbrains/kotlin/codegen/AbstractIrBytecodeTextTest.kt b/compiler/tests-common/tests/org/jetbrains/kotlin/codegen/ir/AbstractIrBytecodeTextTest.kt similarity index 77% rename from compiler/tests-common/tests/org/jetbrains/kotlin/codegen/AbstractIrBytecodeTextTest.kt rename to compiler/tests-common/tests/org/jetbrains/kotlin/codegen/ir/AbstractIrBytecodeTextTest.kt index faa785b92aa..3097181baef 100644 --- a/compiler/tests-common/tests/org/jetbrains/kotlin/codegen/AbstractIrBytecodeTextTest.kt +++ b/compiler/tests-common/tests/org/jetbrains/kotlin/codegen/ir/AbstractIrBytecodeTextTest.kt @@ -1,10 +1,11 @@ /* - * Copyright 2010-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license + * Copyright 2010-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license * that can be found in the license/LICENSE.txt file. */ -package org.jetbrains.kotlin.codegen +package org.jetbrains.kotlin.codegen.ir +import org.jetbrains.kotlin.codegen.AbstractBytecodeTextTest import org.jetbrains.kotlin.config.CompilerConfiguration import org.jetbrains.kotlin.config.JVMConfigurationKeys import org.jetbrains.kotlin.test.ConfigurationKind diff --git a/compiler/tests/org/jetbrains/kotlin/codegen/IrBytecodeTextTestGenerated.java b/compiler/tests/org/jetbrains/kotlin/codegen/ir/IrBytecodeTextTestGenerated.java similarity index 99% rename from compiler/tests/org/jetbrains/kotlin/codegen/IrBytecodeTextTestGenerated.java rename to compiler/tests/org/jetbrains/kotlin/codegen/ir/IrBytecodeTextTestGenerated.java index f04ac3294e3..3e1586ba59f 100644 --- a/compiler/tests/org/jetbrains/kotlin/codegen/IrBytecodeTextTestGenerated.java +++ b/compiler/tests/org/jetbrains/kotlin/codegen/ir/IrBytecodeTextTestGenerated.java @@ -3,7 +3,7 @@ * that can be found in the license/LICENSE.txt file. */ -package org.jetbrains.kotlin.codegen; +package org.jetbrains.kotlin.codegen.ir; import com.intellij.testFramework.TestDataPath; import org.jetbrains.kotlin.test.JUnit3RunnerWithInners;