diff --git a/compiler/testData/codegen/box/multiplatform/multiModule/defaultArgument.kt b/compiler/testData/codegen/box/multiplatform/multiModule/defaultArgument.kt deleted file mode 100644 index 351ef14656f..00000000000 --- a/compiler/testData/codegen/box/multiplatform/multiModule/defaultArgument.kt +++ /dev/null @@ -1,54 +0,0 @@ -// !LANGUAGE: +MultiPlatformProjects -// KJS_WITH_FULL_RUNTIME -// EXPECT_ACTUAL_LINKER -// IGNORE_BACKEND: WASM -// IGNORE_BACKEND: JS -// IGNORE_BACKEND: JS_IR -// IGNORE_BACKEND: JS_IR_ES6 -// IGNORE_BACKEND: NATIVE -// DONT_TARGET_EXACT_BACKEND: JVM -// DONT_TARGET_EXACT_BACKEND: JVM_IR -// KT-45542 - -// MODULE: E -// FILE: e.kt -@file:Suppress("NO_ACTUAL_FOR_EXPECT") - -expect class Test() { - fun size(): Int - fun lastIndex(start: Int, end: Int = size()) - - fun result(): String -} - -// MODULE: A(E) -// FILE: a.kt -@file:Suppress("ACTUAL_WITHOUT_EXPECT") - -actual class Test { - - var r = "" - - actual fun size(): Int = 3 - actual fun lastIndex(start: Int, end: Int) { - r = "OK" - } - - actual fun result(): String = r -} - -// MODULE: U(E) -// FILE: u.kt - -fun foo(): String { - val t = Test() - t.lastIndex(0) - return t.result() -} - -// MODULE: main(U, A) -// FILE: m.kt - -fun box(): String { - return foo() -} \ No newline at end of file diff --git a/compiler/testData/codegen/box/multiplatform/multiModule/expectActualLink.kt b/compiler/testData/codegen/box/multiplatform/multiModule/expectActualLink.kt deleted file mode 100644 index 7781f71a353..00000000000 --- a/compiler/testData/codegen/box/multiplatform/multiModule/expectActualLink.kt +++ /dev/null @@ -1,65 +0,0 @@ -// !LANGUAGE: +MultiPlatformProjects -// KJS_WITH_FULL_RUNTIME -// EXPECT_ACTUAL_LINKER -// IGNORE_BACKEND: JS -// IGNORE_BACKEND: JS_IR -// IGNORE_BACKEND: JS_IR_ES6 -// IGNORE_BACKEND: NATIVE -// IGNORE_BACKEND: WASM -// DONT_TARGET_EXACT_BACKEND: JVM -// DONT_TARGET_EXACT_BACKEND: JVM_IR -// DONT_TARGET_EXACT_BACKEND: ANDROID - -// MODULE: A -// FILE: a.kt -@file:Suppress("NO_ACTUAL_FOR_EXPECT") -package foo - -expect fun foo1(): String -expect fun foo2(): String -expect fun foo3(): String -expect fun foo4(): String -expect fun foo5(): String -expect fun foo6(): String - -actual fun foo1() = "1" -actual fun foo2() = "2" - -fun use1() = foo1() -fun use3() = foo3() - - -// MODULE: B(A) -// FILE: b.kt -@file:Suppress("ACTUAL_WITHOUT_EXPECT") -package foo - -actual fun foo3() = "3" -actual fun foo4() = "4" -actual fun foo5() = "5" - -fun use2() = foo2() -fun use4() = foo4() -fun use6() = foo6() - - -// MODULE: C(B) -// FILE: c.kt -@file:Suppress("ACTUAL_WITHOUT_EXPECT") -package foo - -actual fun foo6() = "6" - -fun use5() = foo5() - - -// MODULE: main(C) -// FILE: main.kt -package main - -import foo.* - -fun box(): String { - return if (use1() + use2() + use3() + use4() + use5() + use6() == "123456") "OK" else "FAIL" -} - diff --git a/compiler/testData/codegen/box/multiplatform/multiModule/expectActualMemberLink.kt b/compiler/testData/codegen/box/multiplatform/multiModule/expectActualMemberLink.kt deleted file mode 100644 index 4d9904aeb7a..00000000000 --- a/compiler/testData/codegen/box/multiplatform/multiModule/expectActualMemberLink.kt +++ /dev/null @@ -1,89 +0,0 @@ -// !LANGUAGE: +MultiPlatformProjects -// KJS_WITH_FULL_RUNTIME -// EXPECT_ACTUAL_LINKER -// IGNORE_BACKEND: JS -// IGNORE_BACKEND: JS_IR -// IGNORE_BACKEND: JS_IR_ES6 -// IGNORE_BACKEND: NATIVE -// IGNORE_BACKEND: WASM -// DONT_TARGET_EXACT_BACKEND: JVM -// DONT_TARGET_EXACT_BACKEND: JVM_IR -// DONT_TARGET_EXACT_BACKEND: ANDROID - -// MODULE: A -// FILE: a.kt -@file:Suppress("NO_ACTUAL_FOR_EXPECT") -package foo - -expect class C1() { - fun foo1(): String -} -expect class C2() { - fun foo2(): String -} -expect class C3() { - fun foo3(): String -} -expect class C4() { - fun foo4(): String -} -expect class C5() { - fun foo5(): String -} -expect class C6() { - fun foo6(): String -} - -actual class C1 { - actual fun foo1() = "1" -} -actual class C2 { - actual fun foo2() = "2" -} - -fun use1() = C1().foo1() -fun use3() = C3().foo3() - - -// MODULE: B(A) -// FILE: b.kt -@file:Suppress("ACTUAL_WITHOUT_EXPECT") -package foo - -actual class C3 { - actual fun foo3() = "3" -} -actual class C4 { - actual fun foo4() = "4" -} -actual class C5 { - actual fun foo5() = "5" -} - -fun use2() = C2().foo2() -fun use4() = C4().foo4() -fun use6() = C6().foo6() - - -// MODULE: C(B) -// FILE: c.kt -@file:Suppress("ACTUAL_WITHOUT_EXPECT") -package foo - -actual class C6 { - actual fun foo6() = "6" -} - -fun use5() = C5().foo5() - - -// MODULE: main(C) -// FILE: main.kt -package main - -import foo.* - -fun box(): String { - return if (use1() + use2() + use3() + use4() + use5() + use6() == "123456") "OK" else "FAIL" -} - diff --git a/compiler/testData/codegen/box/multiplatform/multiModule/expectActualTypealiasLink.kt b/compiler/testData/codegen/box/multiplatform/multiModule/expectActualTypealiasLink.kt deleted file mode 100644 index 13a5c9e5282..00000000000 --- a/compiler/testData/codegen/box/multiplatform/multiModule/expectActualTypealiasLink.kt +++ /dev/null @@ -1,96 +0,0 @@ -// !LANGUAGE: +MultiPlatformProjects -// KJS_WITH_FULL_RUNTIME -// EXPECT_ACTUAL_LINKER -// IGNORE_BACKEND: JS -// IGNORE_BACKEND: JS_IR -// IGNORE_BACKEND: JS_IR_ES6 -// IGNORE_BACKEND: NATIVE -// IGNORE_BACKEND: WASM -// DONT_TARGET_EXACT_BACKEND: JVM -// DONT_TARGET_EXACT_BACKEND: JVM_IR -// DONT_TARGET_EXACT_BACKEND: ANDROID - -// MODULE: A -// FILE: a.kt -@file:Suppress("NO_ACTUAL_FOR_EXPECT") -package foo - -expect class C1() { - fun foo1(): String -} -expect class C2() { - fun foo2(): String -} -expect class C3() { - fun foo3(): String -} -expect class C4() { - fun foo4(): String -} -expect class C5() { - fun foo5(): String -} -expect class C6() { - fun foo6(): String -} - -class D1 { - fun foo1() = "1" -} -class D2 { - fun foo2() = "2" -} - -fun use1() = C1().foo1() -fun use3() = C3().foo3() - - -// MODULE: B(A) -// FILE: b.kt -@file:Suppress("ACTUAL_WITHOUT_EXPECT") -package foo - -class D3 { - fun foo3() = "3" -} -class D4 { - fun foo4() = "4" -} -class D5 { - fun foo5() = "5" -} - -fun use2() = C2().foo2() -fun use4() = C4().foo4() -fun use6() = C6().foo6() - - -// MODULE: C(B) -// FILE: c.kt -@file:Suppress("ACTUAL_WITHOUT_EXPECT") -package foo - -class D6 { - fun foo6() = "6" -} - -fun use5() = C5().foo5() - -actual typealias C1 = D1 -actual typealias C2 = D2 -actual typealias C3 = D3 -actual typealias C4 = D4 -actual typealias C5 = D5 -actual typealias C6 = D6 - - -// MODULE: main(C) -// FILE: main.kt -package main - -import foo.* - -fun box(): String { - return if (use1() + use2() + use3() + use4() + use5() + use6() == "123456") "OK" else "FAIL" -} - diff --git a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/fir/FirJsCodegenBoxTestGenerated.java b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/fir/FirJsCodegenBoxTestGenerated.java index b65bfb90a7c..aca711ef63b 100644 --- a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/fir/FirJsCodegenBoxTestGenerated.java +++ b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/fir/FirJsCodegenBoxTestGenerated.java @@ -24345,30 +24345,6 @@ public class FirJsCodegenBoxTestGenerated extends AbstractFirJsCodegenBoxTest { public void testAllFilesPresentInMultiModule() throws Exception { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/multiplatform/multiModule"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR, true); } - - @Test - @TestMetadata("defaultArgument.kt") - public void testDefaultArgument() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/defaultArgument.kt"); - } - - @Test - @TestMetadata("expectActualLink.kt") - public void testExpectActualLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualLink.kt"); - } - - @Test - @TestMetadata("expectActualMemberLink.kt") - public void testExpectActualMemberLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualMemberLink.kt"); - } - - @Test - @TestMetadata("expectActualTypealiasLink.kt") - public void testExpectActualTypealiasLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualTypealiasLink.kt"); - } } } diff --git a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/fir/FirJsES6CodegenBoxTestGenerated.java b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/fir/FirJsES6CodegenBoxTestGenerated.java index 838a2aed93a..2eac2f09d9a 100644 --- a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/fir/FirJsES6CodegenBoxTestGenerated.java +++ b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/fir/FirJsES6CodegenBoxTestGenerated.java @@ -24345,30 +24345,6 @@ public class FirJsES6CodegenBoxTestGenerated extends AbstractFirJsES6CodegenBoxT public void testAllFilesPresentInMultiModule() throws Exception { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/multiplatform/multiModule"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR_ES6, true); } - - @Test - @TestMetadata("defaultArgument.kt") - public void testDefaultArgument() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/defaultArgument.kt"); - } - - @Test - @TestMetadata("expectActualLink.kt") - public void testExpectActualLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualLink.kt"); - } - - @Test - @TestMetadata("expectActualMemberLink.kt") - public void testExpectActualMemberLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualMemberLink.kt"); - } - - @Test - @TestMetadata("expectActualTypealiasLink.kt") - public void testExpectActualTypealiasLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualTypealiasLink.kt"); - } } } diff --git a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsCodegenBoxTestGenerated.java b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsCodegenBoxTestGenerated.java index 1e073ce6f5d..cfbd6cf2cff 100644 --- a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsCodegenBoxTestGenerated.java +++ b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsCodegenBoxTestGenerated.java @@ -24345,30 +24345,6 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest { public void testAllFilesPresentInMultiModule() throws Exception { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/multiplatform/multiModule"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR, true); } - - @Test - @TestMetadata("defaultArgument.kt") - public void testDefaultArgument() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/defaultArgument.kt"); - } - - @Test - @TestMetadata("expectActualLink.kt") - public void testExpectActualLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualLink.kt"); - } - - @Test - @TestMetadata("expectActualMemberLink.kt") - public void testExpectActualMemberLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualMemberLink.kt"); - } - - @Test - @TestMetadata("expectActualTypealiasLink.kt") - public void testExpectActualTypealiasLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualTypealiasLink.kt"); - } } } diff --git a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsES6CodegenBoxTestGenerated.java b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsES6CodegenBoxTestGenerated.java index a209dd37107..ea5ee5f04cc 100644 --- a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsES6CodegenBoxTestGenerated.java +++ b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsES6CodegenBoxTestGenerated.java @@ -24345,30 +24345,6 @@ public class IrJsES6CodegenBoxTestGenerated extends AbstractIrJsES6CodegenBoxTes public void testAllFilesPresentInMultiModule() throws Exception { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/multiplatform/multiModule"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR_ES6, true); } - - @Test - @TestMetadata("defaultArgument.kt") - public void testDefaultArgument() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/defaultArgument.kt"); - } - - @Test - @TestMetadata("expectActualLink.kt") - public void testExpectActualLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualLink.kt"); - } - - @Test - @TestMetadata("expectActualMemberLink.kt") - public void testExpectActualMemberLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualMemberLink.kt"); - } - - @Test - @TestMetadata("expectActualTypealiasLink.kt") - public void testExpectActualTypealiasLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualTypealiasLink.kt"); - } } } diff --git a/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/FirNativeCodegenBoxTestGenerated.java b/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/FirNativeCodegenBoxTestGenerated.java index 319c461f2e3..e0cfcfcf034 100644 --- a/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/FirNativeCodegenBoxTestGenerated.java +++ b/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/FirNativeCodegenBoxTestGenerated.java @@ -27341,30 +27341,6 @@ public class FirNativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTe public void testAllFilesPresentInMultiModule() throws Exception { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/multiplatform/multiModule"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.NATIVE, true); } - - @Test - @TestMetadata("defaultArgument.kt") - public void testDefaultArgument() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/defaultArgument.kt"); - } - - @Test - @TestMetadata("expectActualLink.kt") - public void testExpectActualLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualLink.kt"); - } - - @Test - @TestMetadata("expectActualMemberLink.kt") - public void testExpectActualMemberLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualMemberLink.kt"); - } - - @Test - @TestMetadata("expectActualTypealiasLink.kt") - public void testExpectActualTypealiasLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualTypealiasLink.kt"); - } } } diff --git a/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/FirNativeCodegenBoxTestNoPLGenerated.java b/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/FirNativeCodegenBoxTestNoPLGenerated.java index b0dc7339e03..7fda96a0a68 100644 --- a/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/FirNativeCodegenBoxTestNoPLGenerated.java +++ b/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/FirNativeCodegenBoxTestNoPLGenerated.java @@ -27971,30 +27971,6 @@ public class FirNativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenB public void testAllFilesPresentInMultiModule() throws Exception { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/multiplatform/multiModule"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.NATIVE, true); } - - @Test - @TestMetadata("defaultArgument.kt") - public void testDefaultArgument() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/defaultArgument.kt"); - } - - @Test - @TestMetadata("expectActualLink.kt") - public void testExpectActualLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualLink.kt"); - } - - @Test - @TestMetadata("expectActualMemberLink.kt") - public void testExpectActualMemberLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualMemberLink.kt"); - } - - @Test - @TestMetadata("expectActualTypealiasLink.kt") - public void testExpectActualTypealiasLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualTypealiasLink.kt"); - } } } diff --git a/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/NativeCodegenBoxTestGenerated.java b/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/NativeCodegenBoxTestGenerated.java index 8ff41caa07c..4daf87cde0a 100644 --- a/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/NativeCodegenBoxTestGenerated.java +++ b/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/NativeCodegenBoxTestGenerated.java @@ -27027,30 +27027,6 @@ public class NativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTest public void testAllFilesPresentInMultiModule() throws Exception { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/multiplatform/multiModule"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.NATIVE, true); } - - @Test - @TestMetadata("defaultArgument.kt") - public void testDefaultArgument() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/defaultArgument.kt"); - } - - @Test - @TestMetadata("expectActualLink.kt") - public void testExpectActualLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualLink.kt"); - } - - @Test - @TestMetadata("expectActualMemberLink.kt") - public void testExpectActualMemberLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualMemberLink.kt"); - } - - @Test - @TestMetadata("expectActualTypealiasLink.kt") - public void testExpectActualTypealiasLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualTypealiasLink.kt"); - } } } diff --git a/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/NativeCodegenBoxTestNoPLGenerated.java b/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/NativeCodegenBoxTestNoPLGenerated.java index ccbae772ff5..5139d089349 100644 --- a/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/NativeCodegenBoxTestNoPLGenerated.java +++ b/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/NativeCodegenBoxTestNoPLGenerated.java @@ -27342,30 +27342,6 @@ public class NativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenBoxT public void testAllFilesPresentInMultiModule() throws Exception { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/multiplatform/multiModule"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.NATIVE, true); } - - @Test - @TestMetadata("defaultArgument.kt") - public void testDefaultArgument() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/defaultArgument.kt"); - } - - @Test - @TestMetadata("expectActualLink.kt") - public void testExpectActualLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualLink.kt"); - } - - @Test - @TestMetadata("expectActualMemberLink.kt") - public void testExpectActualMemberLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualMemberLink.kt"); - } - - @Test - @TestMetadata("expectActualTypealiasLink.kt") - public void testExpectActualTypealiasLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualTypealiasLink.kt"); - } } } diff --git a/wasm/wasm.tests/tests-gen/org/jetbrains/kotlin/wasm/test/FirWasmCodegenBoxTestGenerated.java b/wasm/wasm.tests/tests-gen/org/jetbrains/kotlin/wasm/test/FirWasmCodegenBoxTestGenerated.java index 18f4551cb64..9fd061e4ea9 100644 --- a/wasm/wasm.tests/tests-gen/org/jetbrains/kotlin/wasm/test/FirWasmCodegenBoxTestGenerated.java +++ b/wasm/wasm.tests/tests-gen/org/jetbrains/kotlin/wasm/test/FirWasmCodegenBoxTestGenerated.java @@ -24093,30 +24093,6 @@ public class FirWasmCodegenBoxTestGenerated extends AbstractFirWasmCodegenBoxTes public void testAllFilesPresentInMultiModule() throws Exception { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/multiplatform/multiModule"), Pattern.compile("^([^_](.+))\\.kt$"), null, TargetBackend.WASM, true); } - - @Test - @TestMetadata("defaultArgument.kt") - public void testDefaultArgument() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/defaultArgument.kt"); - } - - @Test - @TestMetadata("expectActualLink.kt") - public void testExpectActualLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualLink.kt"); - } - - @Test - @TestMetadata("expectActualMemberLink.kt") - public void testExpectActualMemberLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualMemberLink.kt"); - } - - @Test - @TestMetadata("expectActualTypealiasLink.kt") - public void testExpectActualTypealiasLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualTypealiasLink.kt"); - } } } diff --git a/wasm/wasm.tests/tests-gen/org/jetbrains/kotlin/wasm/test/K1WasmCodegenBoxTestGenerated.java b/wasm/wasm.tests/tests-gen/org/jetbrains/kotlin/wasm/test/K1WasmCodegenBoxTestGenerated.java index 2ab7ffdc620..376ce7e1c67 100644 --- a/wasm/wasm.tests/tests-gen/org/jetbrains/kotlin/wasm/test/K1WasmCodegenBoxTestGenerated.java +++ b/wasm/wasm.tests/tests-gen/org/jetbrains/kotlin/wasm/test/K1WasmCodegenBoxTestGenerated.java @@ -24093,30 +24093,6 @@ public class K1WasmCodegenBoxTestGenerated extends AbstractK1WasmCodegenBoxTest public void testAllFilesPresentInMultiModule() throws Exception { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/multiplatform/multiModule"), Pattern.compile("^([^_](.+))\\.kt$"), null, TargetBackend.WASM, true); } - - @Test - @TestMetadata("defaultArgument.kt") - public void testDefaultArgument() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/defaultArgument.kt"); - } - - @Test - @TestMetadata("expectActualLink.kt") - public void testExpectActualLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualLink.kt"); - } - - @Test - @TestMetadata("expectActualMemberLink.kt") - public void testExpectActualMemberLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualMemberLink.kt"); - } - - @Test - @TestMetadata("expectActualTypealiasLink.kt") - public void testExpectActualTypealiasLink() throws Exception { - runTest("compiler/testData/codegen/box/multiplatform/multiModule/expectActualTypealiasLink.kt"); - } } }