diff --git a/js/js.tests/build.gradle.kts b/js/js.tests/build.gradle.kts index 704f2b56cdb..06f8ae1af14 100644 --- a/js/js.tests/build.gradle.kts +++ b/js/js.tests/build.gradle.kts @@ -228,7 +228,7 @@ fun Test.setUpJsBoxTests(jsEnabled: Boolean, jsIrEnabled: Boolean) { inputs.dir(rootDir.resolve("libraries/kotlin.test/js-ir/build/classes/kotlin/js/main")) } - exclude("org/jetbrains/kotlin/js/test/wasm/semantics/*") + exclude("org/jetbrains/kotlin/js/testOld/wasm/semantics/*") exclude("org/jetbrains/kotlin/js/test/es6/semantics/*") if (jsEnabled && !jsIrEnabled) exclude("org/jetbrains/kotlin/js/test/ir/semantics/*") @@ -339,7 +339,7 @@ projectTest("wasmTest", true) { setupV8() setupSpiderMonkey() - include("org/jetbrains/kotlin/js/test/wasm/semantics/*") + include("org/jetbrains/kotlin/js/testOld/wasm/semantics/*") dependsOn(":kotlin-stdlib-wasm:compileKotlinWasm") systemProperty("kotlin.wasm.stdlib.path", "libraries/stdlib/wasm/build/classes/kotlin/wasm/main") diff --git a/js/js.tests/test/org/jetbrains/kotlin/generators/tests/GenerateJsTests.kt b/js/js.tests/test/org/jetbrains/kotlin/generators/tests/GenerateJsTests.kt index ab98e859096..f76173badfd 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/generators/tests/GenerateJsTests.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/generators/tests/GenerateJsTests.kt @@ -7,12 +7,12 @@ package org.jetbrains.kotlin.generators.tests import org.jetbrains.kotlin.generators.generateTestGroupSuiteWithJUnit5 import org.jetbrains.kotlin.generators.impl.generateTestGroupSuite -import org.jetbrains.kotlin.js.test.AbstractDceTest -import org.jetbrains.kotlin.js.test.AbstractJsLineNumberTest -import org.jetbrains.kotlin.js.test.compatibility.binary.AbstractJsKlibBinaryCompatibilityTest -import org.jetbrains.kotlin.js.test.wasm.semantics.AbstractIrCodegenBoxWasmTest -import org.jetbrains.kotlin.js.test.wasm.semantics.AbstractIrCodegenWasmJsInteropWasmTest -import org.jetbrains.kotlin.js.test.wasm.semantics.AbstractJsTranslatorWasmTest +import org.jetbrains.kotlin.js.testOld.AbstractDceTest +import org.jetbrains.kotlin.js.testOld.AbstractJsLineNumberTest +import org.jetbrains.kotlin.js.testOld.compatibility.binary.AbstractJsKlibBinaryCompatibilityTest +import org.jetbrains.kotlin.js.testOld.wasm.semantics.AbstractIrCodegenBoxWasmTest +import org.jetbrains.kotlin.js.testOld.wasm.semantics.AbstractIrCodegenWasmJsInteropWasmTest +import org.jetbrains.kotlin.js.testOld.wasm.semantics.AbstractJsTranslatorWasmTest import org.jetbrains.kotlin.js.testNew.* import org.jetbrains.kotlin.js.testNew.AbstractIrJsTypeScriptExportTest import org.jetbrains.kotlin.test.TargetBackend diff --git a/js/js.tests/test/org/jetbrains/kotlin/integration/AntTaskJsTest.java b/js/js.tests/test/org/jetbrains/kotlin/integration/AntTaskJsTest.java index 616ac6e287d..60b9acfb5c2 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/integration/AntTaskJsTest.java +++ b/js/js.tests/test/org/jetbrains/kotlin/integration/AntTaskJsTest.java @@ -9,8 +9,8 @@ import com.intellij.openapi.util.io.FileUtil; import kotlin.collections.CollectionsKt; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; -import org.jetbrains.kotlin.js.test.NashornJsTestChecker; -import org.jetbrains.kotlin.js.test.V8JsTestChecker; +import org.jetbrains.kotlin.js.testOld.NashornJsTestChecker; +import org.jetbrains.kotlin.js.testOld.V8JsTestChecker; import org.jetbrains.kotlin.test.util.KtTestUtil; import java.io.File; diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/testNew/handlers/JsAstHandler.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testNew/handlers/JsAstHandler.kt index 29090af2657..566541944c7 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/testNew/handlers/JsAstHandler.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testNew/handlers/JsAstHandler.kt @@ -10,7 +10,7 @@ import org.jetbrains.kotlin.js.backend.ast.JsNullLiteral import org.jetbrains.kotlin.js.backend.ast.JsProgram import org.jetbrains.kotlin.js.backend.ast.RecursiveJsVisitor import org.jetbrains.kotlin.js.facade.TranslationResult -import org.jetbrains.kotlin.js.test.utils.DirectiveTestUtils +import org.jetbrains.kotlin.js.testOld.utils.DirectiveTestUtils import org.jetbrains.kotlin.test.TargetBackend import org.jetbrains.kotlin.test.backend.handlers.JsBinaryArtifactHandler import org.jetbrains.kotlin.test.model.BinaryArtifacts diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/testNew/handlers/JsBoxRunner.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testNew/handlers/JsBoxRunner.kt index 242136ed49d..adb6b66dc05 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/testNew/handlers/JsBoxRunner.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testNew/handlers/JsBoxRunner.kt @@ -5,7 +5,7 @@ package org.jetbrains.kotlin.js.testNew.handlers -import org.jetbrains.kotlin.js.test.engines.ExternalTool +import org.jetbrains.kotlin.js.testOld.engines.ExternalTool import org.jetbrains.kotlin.js.testNew.utils.* import org.jetbrains.kotlin.test.directives.JsEnvironmentConfigurationDirectives import org.jetbrains.kotlin.test.services.TestServices diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/testNew/handlers/JsMinifierRunner.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testNew/handlers/JsMinifierRunner.kt index 1b241f0af34..374a91ec620 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/testNew/handlers/JsMinifierRunner.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testNew/handlers/JsMinifierRunner.kt @@ -9,11 +9,11 @@ import org.jetbrains.kotlin.js.dce.DeadCodeElimination import org.jetbrains.kotlin.js.dce.InputFile import org.jetbrains.kotlin.js.dce.InputResource import org.jetbrains.kotlin.js.engine.loadFiles -import org.jetbrains.kotlin.js.test.* import org.jetbrains.kotlin.js.testNew.utils.extractTestPackage import org.jetbrains.kotlin.js.testNew.utils.getOnlyJsFilesForRunner import org.jetbrains.kotlin.js.testNew.utils.getTestModuleName import org.jetbrains.kotlin.js.testNew.utils.testWithModuleSystem +import org.jetbrains.kotlin.js.testOld.* import org.jetbrains.kotlin.test.directives.JsEnvironmentConfigurationDirectives import org.jetbrains.kotlin.test.services.TestServices import org.jetbrains.kotlin.test.services.configuration.JsEnvironmentConfigurator diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/testNew/handlers/JsSourceMapHandler.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testNew/handlers/JsSourceMapHandler.kt index 3131925d624..3f63a7264ce 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/testNew/handlers/JsSourceMapHandler.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testNew/handlers/JsSourceMapHandler.kt @@ -17,8 +17,8 @@ import org.jetbrains.kotlin.js.parser.sourcemaps.SourceMapSuccess import org.jetbrains.kotlin.js.sourceMap.SourceFilePathResolver import org.jetbrains.kotlin.js.sourceMap.SourceMap3Builder import org.jetbrains.kotlin.js.sourceMap.SourceMapBuilderConsumer -import org.jetbrains.kotlin.js.test.utils.AmbiguousAstSourcePropagation -import org.jetbrains.kotlin.js.test.utils.toStringWithLineNumbers +import org.jetbrains.kotlin.js.testOld.utils.AmbiguousAstSourcePropagation +import org.jetbrains.kotlin.js.testOld.utils.toStringWithLineNumbers import org.jetbrains.kotlin.js.util.TextOutputImpl import org.jetbrains.kotlin.test.backend.handlers.JsBinaryArtifactHandler import org.jetbrains.kotlin.test.directives.JsEnvironmentConfigurationDirectives diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/testNew/utils/RunnerUtils.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testNew/utils/RunnerUtils.kt index 1b7587e51a0..43ffec5588c 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/testNew/utils/RunnerUtils.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testNew/utils/RunnerUtils.kt @@ -7,9 +7,9 @@ package org.jetbrains.kotlin.js.testNew.utils import org.jetbrains.kotlin.js.JavaScript import org.jetbrains.kotlin.js.config.JSConfigurationKeys -import org.jetbrains.kotlin.js.test.* import org.jetbrains.kotlin.js.testNew.JsAdditionalSourceProvider import org.jetbrains.kotlin.js.testNew.handlers.JsBoxRunner.Companion.TEST_FUNCTION +import org.jetbrains.kotlin.js.testOld.* import org.jetbrains.kotlin.psi.KtNamedFunction import org.jetbrains.kotlin.serialization.js.ModuleKind import org.jetbrains.kotlin.test.TargetBackend diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/AbstractDceTest.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/AbstractDceTest.kt similarity index 75% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/AbstractDceTest.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/AbstractDceTest.kt index 1152f055fd3..d7f54e8da3e 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/AbstractDceTest.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/AbstractDceTest.kt @@ -1,20 +1,9 @@ /* - * Copyright 2010-2017 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors. + * 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.js.test +package org.jetbrains.kotlin.js.testOld import junit.framework.TestCase import org.jetbrains.kotlin.js.dce.DeadCodeElimination diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/AbstractJsLineNumberTest.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/AbstractJsLineNumberTest.kt similarity index 96% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/AbstractJsLineNumberTest.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/AbstractJsLineNumberTest.kt index 21f98667e50..8aadd7428fa 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/AbstractJsLineNumberTest.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/AbstractJsLineNumberTest.kt @@ -1,9 +1,9 @@ /* - * Copyright 2010-2018 JetBrains s.r.o. and Kotlin Programming Language contributors. + * Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors. * 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.js.test +package org.jetbrains.kotlin.js.testOld import com.intellij.openapi.util.io.FileUtil import com.intellij.openapi.vfs.StandardFileSystems @@ -24,9 +24,9 @@ import org.jetbrains.kotlin.js.facade.K2JSTranslator import org.jetbrains.kotlin.js.facade.MainCallParameters import org.jetbrains.kotlin.js.facade.TranslationResult import org.jetbrains.kotlin.js.facade.TranslationUnit -import org.jetbrains.kotlin.js.test.utils.ExceptionThrowingReporter -import org.jetbrains.kotlin.js.test.utils.LineCollector -import org.jetbrains.kotlin.js.test.utils.LineOutputToStringVisitor +import org.jetbrains.kotlin.js.testOld.utils.ExceptionThrowingReporter +import org.jetbrains.kotlin.js.testOld.utils.LineCollector +import org.jetbrains.kotlin.js.testOld.utils.LineOutputToStringVisitor import org.jetbrains.kotlin.js.util.TextOutputImpl import org.jetbrains.kotlin.psi.KtFile import org.jetbrains.kotlin.resolve.CompilerEnvironment diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/ApiTest.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/ApiTest.kt similarity index 98% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/ApiTest.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/ApiTest.kt index d03c74cf736..7f3d6c7f409 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/ApiTest.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/ApiTest.kt @@ -1,12 +1,11 @@ /* - * Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. + * Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors. * 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.js.test +package org.jetbrains.kotlin.js.testOld import junit.framework.TestCase -import org.jetbrains.kotlin.cli.common.messages.AnalyzerWithCompilerReport import org.jetbrains.kotlin.cli.jvm.compiler.EnvironmentConfigFiles import org.jetbrains.kotlin.cli.jvm.compiler.KotlinCoreEnvironment import org.jetbrains.kotlin.config.CommonConfigurationKeys diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/BasicWasmBoxTest.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/BasicWasmBoxTest.kt similarity index 97% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/BasicWasmBoxTest.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/BasicWasmBoxTest.kt index 6070e2b2aa3..3f75551012b 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/BasicWasmBoxTest.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/BasicWasmBoxTest.kt @@ -1,9 +1,9 @@ /* - * Copyright 2010-2019 JetBrains s.r.o. and Kotlin Programming Language contributors. + * Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors. * 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.js.test +package org.jetbrains.kotlin.js.testOld import com.intellij.openapi.util.io.FileUtil import com.intellij.openapi.vfs.StandardFileSystems @@ -20,14 +20,13 @@ import org.jetbrains.kotlin.cli.jvm.compiler.EnvironmentConfigFiles import org.jetbrains.kotlin.cli.jvm.compiler.KotlinCoreEnvironment import org.jetbrains.kotlin.config.* import org.jetbrains.kotlin.idea.KotlinFileType -import org.jetbrains.kotlin.ir.backend.js.loadKlib import org.jetbrains.kotlin.ir.backend.js.prepareAnalyzedSourceModule import org.jetbrains.kotlin.ir.backend.js.utils.sanitizeName import org.jetbrains.kotlin.ir.declarations.impl.IrFactoryImpl import org.jetbrains.kotlin.js.config.JsConfig import org.jetbrains.kotlin.js.facade.TranslationUnit -import org.jetbrains.kotlin.js.test.engines.ExternalTool -import org.jetbrains.kotlin.js.test.engines.SpiderMonkeyEngine +import org.jetbrains.kotlin.js.testOld.engines.ExternalTool +import org.jetbrains.kotlin.js.testOld.engines.SpiderMonkeyEngine import org.jetbrains.kotlin.name.FqName import org.jetbrains.kotlin.psi.KtFile import org.jetbrains.kotlin.psi.KtNamedFunction diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/EncodeSignatureTest.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/EncodeSignatureTest.kt similarity index 99% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/EncodeSignatureTest.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/EncodeSignatureTest.kt index a7af9a795fa..2e2bd84d1e3 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/EncodeSignatureTest.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/EncodeSignatureTest.kt @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.jetbrains.kotlin.js.test +package org.jetbrains.kotlin.js.testOld import com.intellij.mock.MockVirtualFileSystem import com.intellij.openapi.Disposable diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/JsTestChecker.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/JsTestChecker.kt similarity index 98% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/JsTestChecker.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/JsTestChecker.kt index 3170edb7699..916a308bfaf 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/JsTestChecker.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/JsTestChecker.kt @@ -1,9 +1,9 @@ /* - * Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. + * Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors. * 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.js.test +package org.jetbrains.kotlin.js.testOld import com.intellij.openapi.util.text.StringUtil import org.jetbrains.kotlin.js.engine.ScriptEngine diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/JsonTest.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/JsonTest.kt similarity index 99% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/JsonTest.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/JsonTest.kt index 00cad33b39e..7df93b183f2 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/JsonTest.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/JsonTest.kt @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.jetbrains.kotlin.js.test +package org.jetbrains.kotlin.js.testOld import org.jetbrains.kotlin.js.parser.sourcemaps.JsonArray import org.jetbrains.kotlin.js.parser.sourcemaps.JsonBoolean diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/ast/FixForwardReferencesTest.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/ast/FixForwardReferencesTest.kt similarity index 99% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/ast/FixForwardReferencesTest.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/ast/FixForwardReferencesTest.kt index 190bbcfa1fd..511f0ffd855 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/ast/FixForwardReferencesTest.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/ast/FixForwardReferencesTest.kt @@ -3,7 +3,7 @@ * 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.js.test.ast +package org.jetbrains.kotlin.js.testOld.ast import com.google.gwt.dev.js.ThrowExceptionOnErrorReporter import org.jetbrains.kotlin.js.backend.ast.* diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/ast/JsScopeTest.java b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/ast/JsScopeTest.java similarity index 97% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/ast/JsScopeTest.java rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/ast/JsScopeTest.java index a3e994dcb32..526dda9410a 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/ast/JsScopeTest.java +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/ast/JsScopeTest.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.jetbrains.kotlin.js.test.ast; +package org.jetbrains.kotlin.js.testOld.ast; import org.jetbrains.kotlin.js.backend.ast.JsName; import org.jetbrains.kotlin.js.backend.ast.JsScope; diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/ast/NameResolutionTest.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/ast/NameResolutionTest.kt similarity index 97% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/ast/NameResolutionTest.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/ast/NameResolutionTest.kt index b45bbefca80..52552d798bd 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/ast/NameResolutionTest.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/ast/NameResolutionTest.kt @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.jetbrains.kotlin.js.test.ast +package org.jetbrains.kotlin.js.testOld.ast import com.google.gwt.dev.js.rhino.CodePosition import com.google.gwt.dev.js.rhino.ErrorReporter @@ -23,7 +23,7 @@ import org.jetbrains.kotlin.js.backend.ast.* import org.jetbrains.kotlin.js.inline.clean.renameLabels import org.jetbrains.kotlin.js.inline.clean.resolveTemporaryNames import org.jetbrains.kotlin.js.parser.parse -import org.jetbrains.kotlin.js.test.BasicWasmBoxTest +import org.jetbrains.kotlin.js.testOld.BasicWasmBoxTest import org.junit.Assert.assertEquals import org.junit.Assert.fail import org.junit.Rule diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/compatibility/binary/AbstractJsKlibBinaryCompatibilityTest.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/compatibility/binary/AbstractJsKlibBinaryCompatibilityTest.kt similarity index 97% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/compatibility/binary/AbstractJsKlibBinaryCompatibilityTest.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/compatibility/binary/AbstractJsKlibBinaryCompatibilityTest.kt index 7aba2083ece..e14bed32f05 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/compatibility/binary/AbstractJsKlibBinaryCompatibilityTest.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/compatibility/binary/AbstractJsKlibBinaryCompatibilityTest.kt @@ -3,7 +3,7 @@ * 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.js.test.compatibility.binary +package org.jetbrains.kotlin.js.testOld.compatibility.binary import org.jetbrains.kotlin.cli.common.arguments.K2JSCompilerArguments import org.jetbrains.kotlin.cli.common.messages.CompilerMessageSeverity @@ -14,7 +14,7 @@ import org.jetbrains.kotlin.compatibility.binary.* import org.jetbrains.kotlin.cli.jvm.compiler.EnvironmentConfigFiles import org.jetbrains.kotlin.cli.jvm.compiler.KotlinCoreEnvironment import org.jetbrains.kotlin.config.* -import org.jetbrains.kotlin.js.test.V8JsTestChecker +import org.jetbrains.kotlin.js.testOld.V8JsTestChecker import org.jetbrains.kotlin.library.KLIB_FILE_EXTENSION import java.io.File diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/engines/SpiderMonkey.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/engines/SpiderMonkey.kt similarity index 96% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/engines/SpiderMonkey.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/engines/SpiderMonkey.kt index bbfb49c772d..43f3780429b 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/engines/SpiderMonkey.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/engines/SpiderMonkey.kt @@ -3,7 +3,7 @@ * 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.js.test.engines +package org.jetbrains.kotlin.js.testOld.engines import java.io.BufferedReader import java.io.InputStreamReader diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/BasicOptimizerTest.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/BasicOptimizerTest.kt similarity index 96% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/BasicOptimizerTest.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/BasicOptimizerTest.kt index fc203437f6f..abef993e208 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/BasicOptimizerTest.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/BasicOptimizerTest.kt @@ -3,7 +3,7 @@ * 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.js.test.optimizer +package org.jetbrains.kotlin.js.testOld.optimizer import com.google.gwt.dev.js.rhino.CodePosition import com.google.gwt.dev.js.rhino.ErrorReporter @@ -13,8 +13,8 @@ import org.jetbrains.kotlin.js.backend.ast.* import org.jetbrains.kotlin.js.backend.ast.metadata.synthetic import org.jetbrains.kotlin.js.inline.clean.FunctionPostProcessor import org.jetbrains.kotlin.js.parser.parse -import org.jetbrains.kotlin.js.test.BasicWasmBoxTest -import org.jetbrains.kotlin.js.test.createScriptEngine +import org.jetbrains.kotlin.js.testOld.BasicWasmBoxTest +import org.jetbrains.kotlin.js.testOld.createScriptEngine import org.jetbrains.kotlin.js.translate.utils.JsAstUtils import org.jetbrains.kotlin.js.util.TextOutputImpl import org.junit.Assert diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/DeadCodeEliminationTest.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/DeadCodeEliminationTest.kt similarity index 93% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/DeadCodeEliminationTest.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/DeadCodeEliminationTest.kt index 36ab0c72c4a..b6e5a7c380f 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/DeadCodeEliminationTest.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/DeadCodeEliminationTest.kt @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.jetbrains.kotlin.js.test.optimizer +package org.jetbrains.kotlin.js.testOld.optimizer import org.junit.Test diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/DoWhileGuardEliminationTest.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/DoWhileGuardEliminationTest.kt similarity index 94% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/DoWhileGuardEliminationTest.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/DoWhileGuardEliminationTest.kt index a12acbf6914..9f076d3198b 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/DoWhileGuardEliminationTest.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/DoWhileGuardEliminationTest.kt @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.jetbrains.kotlin.js.test.optimizer +package org.jetbrains.kotlin.js.testOld.optimizer import org.junit.Test diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/EmptyStatementEliminationTest.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/EmptyStatementEliminationTest.kt similarity index 94% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/EmptyStatementEliminationTest.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/EmptyStatementEliminationTest.kt index d1305305143..bfde3bc2ad1 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/EmptyStatementEliminationTest.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/EmptyStatementEliminationTest.kt @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.jetbrains.kotlin.js.test.optimizer +package org.jetbrains.kotlin.js.testOld.optimizer import org.junit.Test diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/IfStatementReductionTest.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/IfStatementReductionTest.kt similarity index 93% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/IfStatementReductionTest.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/IfStatementReductionTest.kt index 3e4f25700ea..3f5be420760 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/IfStatementReductionTest.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/IfStatementReductionTest.kt @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.jetbrains.kotlin.js.test.optimizer +package org.jetbrains.kotlin.js.testOld.optimizer import org.junit.Test diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/LabeledBlockToDoWhileTransformationTest.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/LabeledBlockToDoWhileTransformationTest.kt similarity index 95% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/LabeledBlockToDoWhileTransformationTest.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/LabeledBlockToDoWhileTransformationTest.kt index e72923cbd85..6aab65c439c 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/LabeledBlockToDoWhileTransformationTest.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/LabeledBlockToDoWhileTransformationTest.kt @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.jetbrains.kotlin.js.test.optimizer +package org.jetbrains.kotlin.js.testOld.optimizer import org.jetbrains.kotlin.js.backend.ast.JsStatement import org.jetbrains.kotlin.js.inline.clean.LabeledBlockToDoWhileTransformation diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/RedundantStatementEliminationTest.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/RedundantStatementEliminationTest.kt similarity index 94% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/RedundantStatementEliminationTest.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/RedundantStatementEliminationTest.kt index 93b5fc9474e..364990e2daa 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/RedundantStatementEliminationTest.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/RedundantStatementEliminationTest.kt @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.jetbrains.kotlin.js.test.optimizer +package org.jetbrains.kotlin.js.testOld.optimizer import org.junit.Test diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/TemporaryAssignmentEliminationTest.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/TemporaryAssignmentEliminationTest.kt similarity index 95% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/TemporaryAssignmentEliminationTest.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/TemporaryAssignmentEliminationTest.kt index e2a39d5e1ce..44b0a831df6 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/TemporaryAssignmentEliminationTest.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/TemporaryAssignmentEliminationTest.kt @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.jetbrains.kotlin.js.test.optimizer +package org.jetbrains.kotlin.js.testOld.optimizer import org.junit.Ignore import org.junit.Test diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/TemporaryVariableEliminationTest.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/TemporaryVariableEliminationTest.kt similarity index 96% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/TemporaryVariableEliminationTest.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/TemporaryVariableEliminationTest.kt index 4822209b1bc..2d32009797c 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/TemporaryVariableEliminationTest.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/TemporaryVariableEliminationTest.kt @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.jetbrains.kotlin.js.test.optimizer +package org.jetbrains.kotlin.js.testOld.optimizer import org.junit.Test diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/WhileConditionFoldingTest.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/WhileConditionFoldingTest.kt similarity index 96% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/WhileConditionFoldingTest.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/WhileConditionFoldingTest.kt index 86e5e6fa4b8..f16ae1fcd7e 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/optimizer/WhileConditionFoldingTest.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/optimizer/WhileConditionFoldingTest.kt @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.jetbrains.kotlin.js.test.optimizer +package org.jetbrains.kotlin.js.testOld.optimizer import org.junit.Test diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/utils/AmbiguousAstSourcePropagation.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/AmbiguousAstSourcePropagation.kt similarity index 95% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/utils/AmbiguousAstSourcePropagation.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/AmbiguousAstSourcePropagation.kt index 4c8ec193331..684683ee5ce 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/utils/AmbiguousAstSourcePropagation.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/AmbiguousAstSourcePropagation.kt @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.jetbrains.kotlin.js.test.utils +package org.jetbrains.kotlin.js.testOld.utils import org.jetbrains.kotlin.js.backend.ast.* diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/utils/AstSearchUtil.java b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/AstSearchUtil.java similarity index 98% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/utils/AstSearchUtil.java rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/AstSearchUtil.java index 5048d962f6d..366d706f5fb 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/utils/AstSearchUtil.java +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/AstSearchUtil.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.jetbrains.kotlin.js.test.utils; +package org.jetbrains.kotlin.js.testOld.utils; import org.jetbrains.kotlin.js.backend.ast.JsExpression; import org.jetbrains.kotlin.js.backend.ast.JsFunction; diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/utils/CallCounter.java b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/CallCounter.java similarity index 98% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/utils/CallCounter.java rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/CallCounter.java index 5b728914733..93042a6fb3e 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/utils/CallCounter.java +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/CallCounter.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.jetbrains.kotlin.js.test.utils; +package org.jetbrains.kotlin.js.testOld.utils; import org.jetbrains.annotations.NotNull; import org.jetbrains.kotlin.js.backend.ast.*; diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/utils/DirectiveTestUtils.java b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/DirectiveTestUtils.java similarity index 99% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/utils/DirectiveTestUtils.java rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/DirectiveTestUtils.java index 653d6464fd0..f2e26957a2d 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/utils/DirectiveTestUtils.java +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/DirectiveTestUtils.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.jetbrains.kotlin.js.test.utils; +package org.jetbrains.kotlin.js.testOld.utils; import com.intellij.openapi.util.text.StringUtil; import org.jetbrains.annotations.NotNull; diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/utils/ExceptionThrowingReporter.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/ExceptionThrowingReporter.kt similarity index 94% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/utils/ExceptionThrowingReporter.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/ExceptionThrowingReporter.kt index fa17af95de2..58e1a171a7b 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/utils/ExceptionThrowingReporter.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/ExceptionThrowingReporter.kt @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.jetbrains.kotlin.js.test.utils +package org.jetbrains.kotlin.js.testOld.utils import org.jetbrains.kotlin.js.config.JsConfig diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/utils/JsTestUtils.java b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/JsTestUtils.java similarity index 98% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/utils/JsTestUtils.java rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/JsTestUtils.java index 8fc16c29bc2..3def87c4551 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/utils/JsTestUtils.java +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/JsTestUtils.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.jetbrains.kotlin.js.test.utils; +package org.jetbrains.kotlin.js.testOld.utils; import com.intellij.openapi.util.io.FileUtil; import com.intellij.util.containers.ContainerUtil; diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/utils/LineCollector.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/LineCollector.kt similarity index 99% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/utils/LineCollector.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/LineCollector.kt index 45aa9ccae8f..2632e133b5d 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/utils/LineCollector.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/LineCollector.kt @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.jetbrains.kotlin.js.test.utils +package org.jetbrains.kotlin.js.testOld.utils import com.intellij.psi.PsiElement import org.jetbrains.kotlin.js.backend.ast.* diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/utils/LineOutputToStringVisitor.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/LineOutputToStringVisitor.kt similarity index 98% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/utils/LineOutputToStringVisitor.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/LineOutputToStringVisitor.kt index e0b5127900d..58cf073afee 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/utils/LineOutputToStringVisitor.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/LineOutputToStringVisitor.kt @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.jetbrains.kotlin.js.test.utils +package org.jetbrains.kotlin.js.testOld.utils import org.jetbrains.kotlin.js.backend.JsToStringGenerationVisitor import org.jetbrains.kotlin.js.backend.ast.* diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/utils/PropertyReferenceCollector.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/PropertyReferenceCollector.kt similarity index 98% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/utils/PropertyReferenceCollector.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/PropertyReferenceCollector.kt index 0824d7e990c..130649b1bca 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/utils/PropertyReferenceCollector.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/PropertyReferenceCollector.kt @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.jetbrains.kotlin.js.test.utils +package org.jetbrains.kotlin.js.testOld.utils import org.jetbrains.kotlin.js.backend.ast.JsBinaryOperation import org.jetbrains.kotlin.js.backend.ast.JsNameRef diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/utils/lineNumberUtils.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/lineNumberUtils.kt similarity index 95% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/utils/lineNumberUtils.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/lineNumberUtils.kt index 2ccec5c1a5e..038bd19b3b8 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/utils/lineNumberUtils.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/utils/lineNumberUtils.kt @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.jetbrains.kotlin.js.test.utils +package org.jetbrains.kotlin.js.testOld.utils import org.jetbrains.kotlin.js.backend.ast.JsProgram import org.jetbrains.kotlin.js.util.TextOutputImpl diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/wasm/semantics/abstractClassesForGeneratedWasmTests.kt b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/wasm/semantics/abstractClassesForGeneratedWasmTests.kt similarity index 84% rename from js/js.tests/test/org/jetbrains/kotlin/js/test/wasm/semantics/abstractClassesForGeneratedWasmTests.kt rename to js/js.tests/test/org/jetbrains/kotlin/js/testOld/wasm/semantics/abstractClassesForGeneratedWasmTests.kt index c2f93180c65..a2c2a6fe16d 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/wasm/semantics/abstractClassesForGeneratedWasmTests.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/testOld/wasm/semantics/abstractClassesForGeneratedWasmTests.kt @@ -3,9 +3,9 @@ * 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.js.test.wasm.semantics +package org.jetbrains.kotlin.js.testOld.wasm.semantics -import org.jetbrains.kotlin.js.test.BasicWasmBoxTest +import org.jetbrains.kotlin.js.testOld.BasicWasmBoxTest abstract class AbstractIrCodegenBoxWasmTest : BasicWasmBoxTest( "compiler/testData/codegen/box/", diff --git a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/DceTestGenerated.java b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/testOld/DceTestGenerated.java similarity index 98% rename from js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/DceTestGenerated.java rename to js/js.tests/tests-gen/org/jetbrains/kotlin/js/testOld/DceTestGenerated.java index 1fbe774e37e..841888c49e3 100644 --- a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/DceTestGenerated.java +++ b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/testOld/DceTestGenerated.java @@ -3,7 +3,7 @@ * 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.js.test; +package org.jetbrains.kotlin.js.testOld; import com.intellij.testFramework.TestDataPath; import org.jetbrains.kotlin.test.JUnit3RunnerWithInners; diff --git a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/JsLineNumberTestGenerated.java b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/testOld/JsLineNumberTestGenerated.java similarity index 99% rename from js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/JsLineNumberTestGenerated.java rename to js/js.tests/tests-gen/org/jetbrains/kotlin/js/testOld/JsLineNumberTestGenerated.java index 51b67ea799c..bd8b727c851 100644 --- a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/JsLineNumberTestGenerated.java +++ b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/testOld/JsLineNumberTestGenerated.java @@ -3,7 +3,7 @@ * 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.js.test; +package org.jetbrains.kotlin.js.testOld; import com.intellij.testFramework.TestDataPath; import org.jetbrains.kotlin.test.JUnit3RunnerWithInners; diff --git a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/compatibility/binary/JsKlibBinaryCompatibilityTestGenerated.java b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/testOld/compatibility/binary/JsKlibBinaryCompatibilityTestGenerated.java similarity index 99% rename from js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/compatibility/binary/JsKlibBinaryCompatibilityTestGenerated.java rename to js/js.tests/tests-gen/org/jetbrains/kotlin/js/testOld/compatibility/binary/JsKlibBinaryCompatibilityTestGenerated.java index d5862b67e21..81b28b60bea 100644 --- a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/compatibility/binary/JsKlibBinaryCompatibilityTestGenerated.java +++ b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/testOld/compatibility/binary/JsKlibBinaryCompatibilityTestGenerated.java @@ -3,7 +3,7 @@ * 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.js.test.compatibility.binary; +package org.jetbrains.kotlin.js.testOld.compatibility.binary; import com.intellij.testFramework.TestDataPath; import org.jetbrains.kotlin.test.JUnit3RunnerWithInners; diff --git a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/wasm/semantics/IrCodegenBoxWasmTestGenerated.java b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/testOld/wasm/semantics/IrCodegenBoxWasmTestGenerated.java similarity index 99% rename from js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/wasm/semantics/IrCodegenBoxWasmTestGenerated.java rename to js/js.tests/tests-gen/org/jetbrains/kotlin/js/testOld/wasm/semantics/IrCodegenBoxWasmTestGenerated.java index ce0c765fb6e..924765556d4 100644 --- a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/wasm/semantics/IrCodegenBoxWasmTestGenerated.java +++ b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/testOld/wasm/semantics/IrCodegenBoxWasmTestGenerated.java @@ -3,7 +3,7 @@ * 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.js.test.wasm.semantics; +package org.jetbrains.kotlin.js.testOld.wasm.semantics; import com.intellij.testFramework.TestDataPath; import org.jetbrains.kotlin.test.JUnit3RunnerWithInners; diff --git a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/wasm/semantics/IrCodegenWasmJsInteropWasmTestGenerated.java b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/testOld/wasm/semantics/IrCodegenWasmJsInteropWasmTestGenerated.java similarity index 97% rename from js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/wasm/semantics/IrCodegenWasmJsInteropWasmTestGenerated.java rename to js/js.tests/tests-gen/org/jetbrains/kotlin/js/testOld/wasm/semantics/IrCodegenWasmJsInteropWasmTestGenerated.java index 573c821112b..985ef80e7a6 100644 --- a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/wasm/semantics/IrCodegenWasmJsInteropWasmTestGenerated.java +++ b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/testOld/wasm/semantics/IrCodegenWasmJsInteropWasmTestGenerated.java @@ -3,7 +3,7 @@ * 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.js.test.wasm.semantics; +package org.jetbrains.kotlin.js.testOld.wasm.semantics; import com.intellij.testFramework.TestDataPath; import org.jetbrains.kotlin.test.JUnit3RunnerWithInners; diff --git a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/wasm/semantics/JsTranslatorWasmTestGenerated.java b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/testOld/wasm/semantics/JsTranslatorWasmTestGenerated.java similarity index 99% rename from js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/wasm/semantics/JsTranslatorWasmTestGenerated.java rename to js/js.tests/tests-gen/org/jetbrains/kotlin/js/testOld/wasm/semantics/JsTranslatorWasmTestGenerated.java index 395bad10049..caf2bf7b7ac 100644 --- a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/wasm/semantics/JsTranslatorWasmTestGenerated.java +++ b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/testOld/wasm/semantics/JsTranslatorWasmTestGenerated.java @@ -3,7 +3,7 @@ * 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.js.test.wasm.semantics; +package org.jetbrains.kotlin.js.testOld.wasm.semantics; import com.intellij.testFramework.TestDataPath; import org.jetbrains.kotlin.test.JUnit3RunnerWithInners;