[KLIB] Keep "API for KLIB ABI" test data under "compiler/testData/klib/" dir

The test data is used both in ":kotlin-util-klib-abi" and
":native:native.tests" modules. It's better to keep it together with
the test data for other KLIB tests which are also used in more than one
module, i.e. in "compiler/testData/klib/" dir.
This commit is contained in:
Dmitriy Dolovov
2023-08-15 15:25:43 +02:00
committed by Space Team
parent cb92990ed6
commit d691ab61d7
86 changed files with 114 additions and 115 deletions
-1
View File
@@ -89,7 +89,6 @@
<option value="$PROJECT_DIR$/analysis/symbol-light-classes/testData" /> <option value="$PROJECT_DIR$/analysis/symbol-light-classes/testData" />
<option value="$PROJECT_DIR$/analysis/low-level-api-fir/testdata" /> <option value="$PROJECT_DIR$/analysis/low-level-api-fir/testdata" />
<option value="$PROJECT_DIR$/native/native.tests/testData" /> <option value="$PROJECT_DIR$/native/native.tests/testData" />
<option value="$PROJECT_DIR$/compiler/util-klib-abi/testData" />
</array> </array>
</option> </option>
</component> </component>
+1 -1
View File
@@ -25,7 +25,7 @@ sourceSets {
} }
} }
val testDataDir = projectDir.resolve("testData") val testDataDir = project(":compiler").projectDir.resolve("testData/klib/dump-abi/content")
projectTest(jUnitMode = JUnitMode.JUnit5) { projectTest(jUnitMode = JUnitMode.JUnit5) {
inputs.dir(testDataDir) inputs.dir(testDataDir)
@@ -11,7 +11,7 @@ fun main() {
System.setProperty("java.awt.headless", "true") System.setProperty("java.awt.headless", "true")
generateTestGroupSuiteWithJUnit5 { generateTestGroupSuiteWithJUnit5 {
testGroup("compiler/util-klib-abi/tests-gen", "compiler/util-klib-abi/testData") { testGroup("compiler/util-klib-abi/tests-gen", "compiler/testData/klib/dump-abi") {
testClass<AbstractFirJsLibraryAbiReaderTest> { testClass<AbstractFirJsLibraryAbiReaderTest> {
model("content") model("content")
} }
@@ -17,155 +17,155 @@ import java.util.regex.Pattern;
/** This class is generated by {@link org.jetbrains.kotlin.library.abi.GenerateLibraryAbiReaderTestsKt}. DO NOT MODIFY MANUALLY */ /** This class is generated by {@link org.jetbrains.kotlin.library.abi.GenerateLibraryAbiReaderTestsKt}. DO NOT MODIFY MANUALLY */
@SuppressWarnings("all") @SuppressWarnings("all")
@TestMetadata("compiler/util-klib-abi/testData/content") @TestMetadata("compiler/testData/klib/dump-abi/content")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class ClassicJsLibraryAbiReaderTestGenerated extends AbstractClassicJsLibraryAbiReaderTest { public class ClassicJsLibraryAbiReaderTestGenerated extends AbstractClassicJsLibraryAbiReaderTest {
@Test @Test
public void testAllFilesPresentInContent() throws Exception { public void testAllFilesPresentInContent() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/util-klib-abi/testData/content"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/klib/dump-abi/content"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR, true);
} }
@Test @Test
@TestMetadata("callables.kt") @TestMetadata("callables.kt")
public void testCallables() throws Exception { public void testCallables() throws Exception {
runTest("compiler/util-klib-abi/testData/content/callables.kt"); runTest("compiler/testData/klib/dump-abi/content/callables.kt");
} }
@Test @Test
@TestMetadata("classifiers.kt") @TestMetadata("classifiers.kt")
public void testClassifiers() throws Exception { public void testClassifiers() throws Exception {
runTest("compiler/util-klib-abi/testData/content/classifiers.kt"); runTest("compiler/testData/klib/dump-abi/content/classifiers.kt");
} }
@Test @Test
@TestMetadata("excluded_classes_1.kt") @TestMetadata("excluded_classes_1.kt")
public void testExcluded_classes_1() throws Exception { public void testExcluded_classes_1() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_classes_1.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_classes_1.kt");
} }
@Test @Test
@TestMetadata("excluded_classes_2.kt") @TestMetadata("excluded_classes_2.kt")
public void testExcluded_classes_2() throws Exception { public void testExcluded_classes_2() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_classes_2.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_classes_2.kt");
} }
@Test @Test
@TestMetadata("excluded_classes_3.kt") @TestMetadata("excluded_classes_3.kt")
public void testExcluded_classes_3() throws Exception { public void testExcluded_classes_3() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_classes_3.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_classes_3.kt");
} }
@Test @Test
@TestMetadata("excluded_packages_non_root_1.kt") @TestMetadata("excluded_packages_non_root_1.kt")
public void testExcluded_packages_non_root_1() throws Exception { public void testExcluded_packages_non_root_1() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_packages_non_root_1.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_packages_non_root_1.kt");
} }
@Test @Test
@TestMetadata("excluded_packages_non_root_2.kt") @TestMetadata("excluded_packages_non_root_2.kt")
public void testExcluded_packages_non_root_2() throws Exception { public void testExcluded_packages_non_root_2() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_packages_non_root_2.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_packages_non_root_2.kt");
} }
@Test @Test
@TestMetadata("excluded_packages_non_root_3.kt") @TestMetadata("excluded_packages_non_root_3.kt")
public void testExcluded_packages_non_root_3() throws Exception { public void testExcluded_packages_non_root_3() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_packages_non_root_3.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_packages_non_root_3.kt");
} }
@Test @Test
@TestMetadata("excluded_packages_non_root_4.kt") @TestMetadata("excluded_packages_non_root_4.kt")
public void testExcluded_packages_non_root_4() throws Exception { public void testExcluded_packages_non_root_4() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_packages_non_root_4.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_packages_non_root_4.kt");
} }
@Test @Test
@TestMetadata("excluded_packages_root_1.kt") @TestMetadata("excluded_packages_root_1.kt")
public void testExcluded_packages_root_1() throws Exception { public void testExcluded_packages_root_1() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_packages_root_1.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_packages_root_1.kt");
} }
@Test @Test
@TestMetadata("excluded_packages_root_2.kt") @TestMetadata("excluded_packages_root_2.kt")
public void testExcluded_packages_root_2() throws Exception { public void testExcluded_packages_root_2() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_packages_root_2.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_packages_root_2.kt");
} }
@Test @Test
@TestMetadata("inheritance.kt") @TestMetadata("inheritance.kt")
public void testInheritance() throws Exception { public void testInheritance() throws Exception {
runTest("compiler/util-klib-abi/testData/content/inheritance.kt"); runTest("compiler/testData/klib/dump-abi/content/inheritance.kt");
} }
@Test @Test
@TestMetadata("root_package.kt") @TestMetadata("root_package.kt")
public void testRoot_package() throws Exception { public void testRoot_package() throws Exception {
runTest("compiler/util-klib-abi/testData/content/root_package.kt"); runTest("compiler/testData/klib/dump-abi/content/root_package.kt");
} }
@Test @Test
@TestMetadata("specific_types_dnn.kt") @TestMetadata("specific_types_dnn.kt")
public void testSpecific_types_dnn() throws Exception { public void testSpecific_types_dnn() throws Exception {
runTest("compiler/util-klib-abi/testData/content/specific_types_dnn.kt"); runTest("compiler/testData/klib/dump-abi/content/specific_types_dnn.kt");
} }
@Test @Test
@TestMetadata("specific_types_dynamic.kt") @TestMetadata("specific_types_dynamic.kt")
public void testSpecific_types_dynamic() throws Exception { public void testSpecific_types_dynamic() throws Exception {
runTest("compiler/util-klib-abi/testData/content/specific_types_dynamic.kt"); runTest("compiler/testData/klib/dump-abi/content/specific_types_dynamic.kt");
} }
@Test @Test
@TestMetadata("type_parameters.kt") @TestMetadata("type_parameters.kt")
public void testType_parameters() throws Exception { public void testType_parameters() throws Exception {
runTest("compiler/util-klib-abi/testData/content/type_parameters.kt"); runTest("compiler/testData/klib/dump-abi/content/type_parameters.kt");
} }
@Test @Test
@TestMetadata("value_parameters.kt") @TestMetadata("value_parameters.kt")
public void testValue_parameters() throws Exception { public void testValue_parameters() throws Exception {
runTest("compiler/util-klib-abi/testData/content/value_parameters.kt"); runTest("compiler/testData/klib/dump-abi/content/value_parameters.kt");
} }
@Test @Test
@TestMetadata("visibilities.kt") @TestMetadata("visibilities.kt")
public void testVisibilities() throws Exception { public void testVisibilities() throws Exception {
runTest("compiler/util-klib-abi/testData/content/visibilities.kt"); runTest("compiler/testData/klib/dump-abi/content/visibilities.kt");
} }
@Test @Test
@TestMetadata("with_non_public_markers_1.kt") @TestMetadata("with_non_public_markers_1.kt")
public void testWith_non_public_markers_1() throws Exception { public void testWith_non_public_markers_1() throws Exception {
runTest("compiler/util-klib-abi/testData/content/with_non_public_markers_1.kt"); runTest("compiler/testData/klib/dump-abi/content/with_non_public_markers_1.kt");
} }
@Test @Test
@TestMetadata("with_non_public_markers_2.kt") @TestMetadata("with_non_public_markers_2.kt")
public void testWith_non_public_markers_2() throws Exception { public void testWith_non_public_markers_2() throws Exception {
runTest("compiler/util-klib-abi/testData/content/with_non_public_markers_2.kt"); runTest("compiler/testData/klib/dump-abi/content/with_non_public_markers_2.kt");
} }
@Test @Test
@TestMetadata("with_non_public_markers_3.kt") @TestMetadata("with_non_public_markers_3.kt")
public void testWith_non_public_markers_3() throws Exception { public void testWith_non_public_markers_3() throws Exception {
runTest("compiler/util-klib-abi/testData/content/with_non_public_markers_3.kt"); runTest("compiler/testData/klib/dump-abi/content/with_non_public_markers_3.kt");
} }
@Test @Test
@TestMetadata("with_non_public_markers_4.kt") @TestMetadata("with_non_public_markers_4.kt")
public void testWith_non_public_markers_4() throws Exception { public void testWith_non_public_markers_4() throws Exception {
runTest("compiler/util-klib-abi/testData/content/with_non_public_markers_4.kt"); runTest("compiler/testData/klib/dump-abi/content/with_non_public_markers_4.kt");
} }
@Test @Test
@TestMetadata("with_non_public_markers_5.kt") @TestMetadata("with_non_public_markers_5.kt")
public void testWith_non_public_markers_5() throws Exception { public void testWith_non_public_markers_5() throws Exception {
runTest("compiler/util-klib-abi/testData/content/with_non_public_markers_5.kt"); runTest("compiler/testData/klib/dump-abi/content/with_non_public_markers_5.kt");
} }
@Test @Test
@TestMetadata("with_non_public_markers_private_annotations.kt") @TestMetadata("with_non_public_markers_private_annotations.kt")
public void testWith_non_public_markers_private_annotations() throws Exception { public void testWith_non_public_markers_private_annotations() throws Exception {
runTest("compiler/util-klib-abi/testData/content/with_non_public_markers_private_annotations.kt"); runTest("compiler/testData/klib/dump-abi/content/with_non_public_markers_private_annotations.kt");
} }
} }
@@ -17,155 +17,155 @@ import java.util.regex.Pattern;
/** This class is generated by {@link org.jetbrains.kotlin.library.abi.GenerateLibraryAbiReaderTestsKt}. DO NOT MODIFY MANUALLY */ /** This class is generated by {@link org.jetbrains.kotlin.library.abi.GenerateLibraryAbiReaderTestsKt}. DO NOT MODIFY MANUALLY */
@SuppressWarnings("all") @SuppressWarnings("all")
@TestMetadata("compiler/util-klib-abi/testData/content") @TestMetadata("compiler/testData/klib/dump-abi/content")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class FirJsLibraryAbiReaderTestGenerated extends AbstractFirJsLibraryAbiReaderTest { public class FirJsLibraryAbiReaderTestGenerated extends AbstractFirJsLibraryAbiReaderTest {
@Test @Test
public void testAllFilesPresentInContent() throws Exception { public void testAllFilesPresentInContent() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/util-klib-abi/testData/content"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/klib/dump-abi/content"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR, true);
} }
@Test @Test
@TestMetadata("callables.kt") @TestMetadata("callables.kt")
public void testCallables() throws Exception { public void testCallables() throws Exception {
runTest("compiler/util-klib-abi/testData/content/callables.kt"); runTest("compiler/testData/klib/dump-abi/content/callables.kt");
} }
@Test @Test
@TestMetadata("classifiers.kt") @TestMetadata("classifiers.kt")
public void testClassifiers() throws Exception { public void testClassifiers() throws Exception {
runTest("compiler/util-klib-abi/testData/content/classifiers.kt"); runTest("compiler/testData/klib/dump-abi/content/classifiers.kt");
} }
@Test @Test
@TestMetadata("excluded_classes_1.kt") @TestMetadata("excluded_classes_1.kt")
public void testExcluded_classes_1() throws Exception { public void testExcluded_classes_1() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_classes_1.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_classes_1.kt");
} }
@Test @Test
@TestMetadata("excluded_classes_2.kt") @TestMetadata("excluded_classes_2.kt")
public void testExcluded_classes_2() throws Exception { public void testExcluded_classes_2() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_classes_2.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_classes_2.kt");
} }
@Test @Test
@TestMetadata("excluded_classes_3.kt") @TestMetadata("excluded_classes_3.kt")
public void testExcluded_classes_3() throws Exception { public void testExcluded_classes_3() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_classes_3.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_classes_3.kt");
} }
@Test @Test
@TestMetadata("excluded_packages_non_root_1.kt") @TestMetadata("excluded_packages_non_root_1.kt")
public void testExcluded_packages_non_root_1() throws Exception { public void testExcluded_packages_non_root_1() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_packages_non_root_1.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_packages_non_root_1.kt");
} }
@Test @Test
@TestMetadata("excluded_packages_non_root_2.kt") @TestMetadata("excluded_packages_non_root_2.kt")
public void testExcluded_packages_non_root_2() throws Exception { public void testExcluded_packages_non_root_2() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_packages_non_root_2.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_packages_non_root_2.kt");
} }
@Test @Test
@TestMetadata("excluded_packages_non_root_3.kt") @TestMetadata("excluded_packages_non_root_3.kt")
public void testExcluded_packages_non_root_3() throws Exception { public void testExcluded_packages_non_root_3() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_packages_non_root_3.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_packages_non_root_3.kt");
} }
@Test @Test
@TestMetadata("excluded_packages_non_root_4.kt") @TestMetadata("excluded_packages_non_root_4.kt")
public void testExcluded_packages_non_root_4() throws Exception { public void testExcluded_packages_non_root_4() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_packages_non_root_4.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_packages_non_root_4.kt");
} }
@Test @Test
@TestMetadata("excluded_packages_root_1.kt") @TestMetadata("excluded_packages_root_1.kt")
public void testExcluded_packages_root_1() throws Exception { public void testExcluded_packages_root_1() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_packages_root_1.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_packages_root_1.kt");
} }
@Test @Test
@TestMetadata("excluded_packages_root_2.kt") @TestMetadata("excluded_packages_root_2.kt")
public void testExcluded_packages_root_2() throws Exception { public void testExcluded_packages_root_2() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_packages_root_2.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_packages_root_2.kt");
} }
@Test @Test
@TestMetadata("inheritance.kt") @TestMetadata("inheritance.kt")
public void testInheritance() throws Exception { public void testInheritance() throws Exception {
runTest("compiler/util-klib-abi/testData/content/inheritance.kt"); runTest("compiler/testData/klib/dump-abi/content/inheritance.kt");
} }
@Test @Test
@TestMetadata("root_package.kt") @TestMetadata("root_package.kt")
public void testRoot_package() throws Exception { public void testRoot_package() throws Exception {
runTest("compiler/util-klib-abi/testData/content/root_package.kt"); runTest("compiler/testData/klib/dump-abi/content/root_package.kt");
} }
@Test @Test
@TestMetadata("specific_types_dnn.kt") @TestMetadata("specific_types_dnn.kt")
public void testSpecific_types_dnn() throws Exception { public void testSpecific_types_dnn() throws Exception {
runTest("compiler/util-klib-abi/testData/content/specific_types_dnn.kt"); runTest("compiler/testData/klib/dump-abi/content/specific_types_dnn.kt");
} }
@Test @Test
@TestMetadata("specific_types_dynamic.kt") @TestMetadata("specific_types_dynamic.kt")
public void testSpecific_types_dynamic() throws Exception { public void testSpecific_types_dynamic() throws Exception {
runTest("compiler/util-klib-abi/testData/content/specific_types_dynamic.kt"); runTest("compiler/testData/klib/dump-abi/content/specific_types_dynamic.kt");
} }
@Test @Test
@TestMetadata("type_parameters.kt") @TestMetadata("type_parameters.kt")
public void testType_parameters() throws Exception { public void testType_parameters() throws Exception {
runTest("compiler/util-klib-abi/testData/content/type_parameters.kt"); runTest("compiler/testData/klib/dump-abi/content/type_parameters.kt");
} }
@Test @Test
@TestMetadata("value_parameters.kt") @TestMetadata("value_parameters.kt")
public void testValue_parameters() throws Exception { public void testValue_parameters() throws Exception {
runTest("compiler/util-klib-abi/testData/content/value_parameters.kt"); runTest("compiler/testData/klib/dump-abi/content/value_parameters.kt");
} }
@Test @Test
@TestMetadata("visibilities.kt") @TestMetadata("visibilities.kt")
public void testVisibilities() throws Exception { public void testVisibilities() throws Exception {
runTest("compiler/util-klib-abi/testData/content/visibilities.kt"); runTest("compiler/testData/klib/dump-abi/content/visibilities.kt");
} }
@Test @Test
@TestMetadata("with_non_public_markers_1.kt") @TestMetadata("with_non_public_markers_1.kt")
public void testWith_non_public_markers_1() throws Exception { public void testWith_non_public_markers_1() throws Exception {
runTest("compiler/util-klib-abi/testData/content/with_non_public_markers_1.kt"); runTest("compiler/testData/klib/dump-abi/content/with_non_public_markers_1.kt");
} }
@Test @Test
@TestMetadata("with_non_public_markers_2.kt") @TestMetadata("with_non_public_markers_2.kt")
public void testWith_non_public_markers_2() throws Exception { public void testWith_non_public_markers_2() throws Exception {
runTest("compiler/util-klib-abi/testData/content/with_non_public_markers_2.kt"); runTest("compiler/testData/klib/dump-abi/content/with_non_public_markers_2.kt");
} }
@Test @Test
@TestMetadata("with_non_public_markers_3.kt") @TestMetadata("with_non_public_markers_3.kt")
public void testWith_non_public_markers_3() throws Exception { public void testWith_non_public_markers_3() throws Exception {
runTest("compiler/util-klib-abi/testData/content/with_non_public_markers_3.kt"); runTest("compiler/testData/klib/dump-abi/content/with_non_public_markers_3.kt");
} }
@Test @Test
@TestMetadata("with_non_public_markers_4.kt") @TestMetadata("with_non_public_markers_4.kt")
public void testWith_non_public_markers_4() throws Exception { public void testWith_non_public_markers_4() throws Exception {
runTest("compiler/util-klib-abi/testData/content/with_non_public_markers_4.kt"); runTest("compiler/testData/klib/dump-abi/content/with_non_public_markers_4.kt");
} }
@Test @Test
@TestMetadata("with_non_public_markers_5.kt") @TestMetadata("with_non_public_markers_5.kt")
public void testWith_non_public_markers_5() throws Exception { public void testWith_non_public_markers_5() throws Exception {
runTest("compiler/util-klib-abi/testData/content/with_non_public_markers_5.kt"); runTest("compiler/testData/klib/dump-abi/content/with_non_public_markers_5.kt");
} }
@Test @Test
@TestMetadata("with_non_public_markers_private_annotations.kt") @TestMetadata("with_non_public_markers_private_annotations.kt")
public void testWith_non_public_markers_private_annotations() throws Exception { public void testWith_non_public_markers_private_annotations() throws Exception {
runTest("compiler/util-klib-abi/testData/content/with_non_public_markers_private_annotations.kt"); runTest("compiler/testData/klib/dump-abi/content/with_non_public_markers_private_annotations.kt");
} }
} }
@@ -18,19 +18,19 @@ import java.util.regex.Pattern;
/** This class is generated by {@link org.jetbrains.kotlin.generators.tests.GenerateNativeTestsKt}. DO NOT MODIFY MANUALLY */ /** This class is generated by {@link org.jetbrains.kotlin.generators.tests.GenerateNativeTestsKt}. DO NOT MODIFY MANUALLY */
@SuppressWarnings("all") @SuppressWarnings("all")
@TestMetadata("compiler/util-klib-abi/testData/cinterop") @TestMetadata("compiler/testData/klib/dump-abi/cinterop")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Tag("frontend-fir") @Tag("frontend-fir")
@FirPipeline() @FirPipeline()
public class FirNativeCInteropLibraryAbiReaderTest extends AbstractNativeCInteropLibraryAbiReaderTest { public class FirNativeCInteropLibraryAbiReaderTest extends AbstractNativeCInteropLibraryAbiReaderTest {
@Test @Test
public void testAllFilesPresentInCinterop() throws Exception { public void testAllFilesPresentInCinterop() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/util-klib-abi/testData/cinterop"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/klib/dump-abi/cinterop"), Pattern.compile("^(.+)\\.kt$"), null, true);
} }
@Test @Test
@TestMetadata("interop_class_inheritor.kt") @TestMetadata("interop_class_inheritor.kt")
public void testInterop_class_inheritor() throws Exception { public void testInterop_class_inheritor() throws Exception {
runTest("compiler/util-klib-abi/testData/cinterop/interop_class_inheritor.kt"); runTest("compiler/testData/klib/dump-abi/cinterop/interop_class_inheritor.kt");
} }
} }
@@ -19,151 +19,151 @@ import java.util.regex.Pattern;
/** This class is generated by {@link org.jetbrains.kotlin.generators.tests.GenerateNativeTestsKt}. DO NOT MODIFY MANUALLY */ /** This class is generated by {@link org.jetbrains.kotlin.generators.tests.GenerateNativeTestsKt}. DO NOT MODIFY MANUALLY */
@SuppressWarnings("all") @SuppressWarnings("all")
@TestMetadata("compiler/util-klib-abi/testData/content") @TestMetadata("compiler/testData/klib/dump-abi/content")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@Tag("frontend-fir") @Tag("frontend-fir")
@FirPipeline() @FirPipeline()
public class FirNativeLibraryAbiReaderTest extends AbstractNativeLibraryAbiReaderTest { public class FirNativeLibraryAbiReaderTest extends AbstractNativeLibraryAbiReaderTest {
@Test @Test
public void testAllFilesPresentInContent() throws Exception { public void testAllFilesPresentInContent() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/util-klib-abi/testData/content"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.NATIVE, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/klib/dump-abi/content"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.NATIVE, true);
} }
@Test @Test
@TestMetadata("callables.kt") @TestMetadata("callables.kt")
public void testCallables() throws Exception { public void testCallables() throws Exception {
runTest("compiler/util-klib-abi/testData/content/callables.kt"); runTest("compiler/testData/klib/dump-abi/content/callables.kt");
} }
@Test @Test
@TestMetadata("classifiers.kt") @TestMetadata("classifiers.kt")
public void testClassifiers() throws Exception { public void testClassifiers() throws Exception {
runTest("compiler/util-klib-abi/testData/content/classifiers.kt"); runTest("compiler/testData/klib/dump-abi/content/classifiers.kt");
} }
@Test @Test
@TestMetadata("excluded_classes_1.kt") @TestMetadata("excluded_classes_1.kt")
public void testExcluded_classes_1() throws Exception { public void testExcluded_classes_1() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_classes_1.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_classes_1.kt");
} }
@Test @Test
@TestMetadata("excluded_classes_2.kt") @TestMetadata("excluded_classes_2.kt")
public void testExcluded_classes_2() throws Exception { public void testExcluded_classes_2() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_classes_2.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_classes_2.kt");
} }
@Test @Test
@TestMetadata("excluded_classes_3.kt") @TestMetadata("excluded_classes_3.kt")
public void testExcluded_classes_3() throws Exception { public void testExcluded_classes_3() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_classes_3.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_classes_3.kt");
} }
@Test @Test
@TestMetadata("excluded_packages_non_root_1.kt") @TestMetadata("excluded_packages_non_root_1.kt")
public void testExcluded_packages_non_root_1() throws Exception { public void testExcluded_packages_non_root_1() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_packages_non_root_1.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_packages_non_root_1.kt");
} }
@Test @Test
@TestMetadata("excluded_packages_non_root_2.kt") @TestMetadata("excluded_packages_non_root_2.kt")
public void testExcluded_packages_non_root_2() throws Exception { public void testExcluded_packages_non_root_2() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_packages_non_root_2.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_packages_non_root_2.kt");
} }
@Test @Test
@TestMetadata("excluded_packages_non_root_3.kt") @TestMetadata("excluded_packages_non_root_3.kt")
public void testExcluded_packages_non_root_3() throws Exception { public void testExcluded_packages_non_root_3() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_packages_non_root_3.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_packages_non_root_3.kt");
} }
@Test @Test
@TestMetadata("excluded_packages_non_root_4.kt") @TestMetadata("excluded_packages_non_root_4.kt")
public void testExcluded_packages_non_root_4() throws Exception { public void testExcluded_packages_non_root_4() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_packages_non_root_4.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_packages_non_root_4.kt");
} }
@Test @Test
@TestMetadata("excluded_packages_root_1.kt") @TestMetadata("excluded_packages_root_1.kt")
public void testExcluded_packages_root_1() throws Exception { public void testExcluded_packages_root_1() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_packages_root_1.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_packages_root_1.kt");
} }
@Test @Test
@TestMetadata("excluded_packages_root_2.kt") @TestMetadata("excluded_packages_root_2.kt")
public void testExcluded_packages_root_2() throws Exception { public void testExcluded_packages_root_2() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_packages_root_2.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_packages_root_2.kt");
} }
@Test @Test
@TestMetadata("inheritance.kt") @TestMetadata("inheritance.kt")
public void testInheritance() throws Exception { public void testInheritance() throws Exception {
runTest("compiler/util-klib-abi/testData/content/inheritance.kt"); runTest("compiler/testData/klib/dump-abi/content/inheritance.kt");
} }
@Test @Test
@TestMetadata("root_package.kt") @TestMetadata("root_package.kt")
public void testRoot_package() throws Exception { public void testRoot_package() throws Exception {
runTest("compiler/util-klib-abi/testData/content/root_package.kt"); runTest("compiler/testData/klib/dump-abi/content/root_package.kt");
} }
@Test @Test
@TestMetadata("specific_types_dnn.kt") @TestMetadata("specific_types_dnn.kt")
public void testSpecific_types_dnn() throws Exception { public void testSpecific_types_dnn() throws Exception {
runTest("compiler/util-klib-abi/testData/content/specific_types_dnn.kt"); runTest("compiler/testData/klib/dump-abi/content/specific_types_dnn.kt");
} }
@Test @Test
@TestMetadata("type_parameters.kt") @TestMetadata("type_parameters.kt")
public void testType_parameters() throws Exception { public void testType_parameters() throws Exception {
runTest("compiler/util-klib-abi/testData/content/type_parameters.kt"); runTest("compiler/testData/klib/dump-abi/content/type_parameters.kt");
} }
@Test @Test
@TestMetadata("value_parameters.kt") @TestMetadata("value_parameters.kt")
public void testValue_parameters() throws Exception { public void testValue_parameters() throws Exception {
runTest("compiler/util-klib-abi/testData/content/value_parameters.kt"); runTest("compiler/testData/klib/dump-abi/content/value_parameters.kt");
} }
@Test @Test
@TestMetadata("visibilities.kt") @TestMetadata("visibilities.kt")
public void testVisibilities() throws Exception { public void testVisibilities() throws Exception {
runTest("compiler/util-klib-abi/testData/content/visibilities.kt"); runTest("compiler/testData/klib/dump-abi/content/visibilities.kt");
} }
@Test @Test
@TestMetadata("with_non_public_markers_1.kt") @TestMetadata("with_non_public_markers_1.kt")
public void testWith_non_public_markers_1() throws Exception { public void testWith_non_public_markers_1() throws Exception {
runTest("compiler/util-klib-abi/testData/content/with_non_public_markers_1.kt"); runTest("compiler/testData/klib/dump-abi/content/with_non_public_markers_1.kt");
} }
@Test @Test
@TestMetadata("with_non_public_markers_2.kt") @TestMetadata("with_non_public_markers_2.kt")
public void testWith_non_public_markers_2() throws Exception { public void testWith_non_public_markers_2() throws Exception {
runTest("compiler/util-klib-abi/testData/content/with_non_public_markers_2.kt"); runTest("compiler/testData/klib/dump-abi/content/with_non_public_markers_2.kt");
} }
@Test @Test
@TestMetadata("with_non_public_markers_3.kt") @TestMetadata("with_non_public_markers_3.kt")
public void testWith_non_public_markers_3() throws Exception { public void testWith_non_public_markers_3() throws Exception {
runTest("compiler/util-klib-abi/testData/content/with_non_public_markers_3.kt"); runTest("compiler/testData/klib/dump-abi/content/with_non_public_markers_3.kt");
} }
@Test @Test
@TestMetadata("with_non_public_markers_4.kt") @TestMetadata("with_non_public_markers_4.kt")
public void testWith_non_public_markers_4() throws Exception { public void testWith_non_public_markers_4() throws Exception {
runTest("compiler/util-klib-abi/testData/content/with_non_public_markers_4.kt"); runTest("compiler/testData/klib/dump-abi/content/with_non_public_markers_4.kt");
} }
@Test @Test
@TestMetadata("with_non_public_markers_5.kt") @TestMetadata("with_non_public_markers_5.kt")
public void testWith_non_public_markers_5() throws Exception { public void testWith_non_public_markers_5() throws Exception {
runTest("compiler/util-klib-abi/testData/content/with_non_public_markers_5.kt"); runTest("compiler/testData/klib/dump-abi/content/with_non_public_markers_5.kt");
} }
@Test @Test
@TestMetadata("with_non_public_markers_private_annotations.kt") @TestMetadata("with_non_public_markers_private_annotations.kt")
public void testWith_non_public_markers_private_annotations() throws Exception { public void testWith_non_public_markers_private_annotations() throws Exception {
runTest("compiler/util-klib-abi/testData/content/with_non_public_markers_private_annotations.kt"); runTest("compiler/testData/klib/dump-abi/content/with_non_public_markers_private_annotations.kt");
} }
} }
@@ -16,17 +16,17 @@ import java.util.regex.Pattern;
/** This class is generated by {@link org.jetbrains.kotlin.generators.tests.GenerateNativeTestsKt}. DO NOT MODIFY MANUALLY */ /** This class is generated by {@link org.jetbrains.kotlin.generators.tests.GenerateNativeTestsKt}. DO NOT MODIFY MANUALLY */
@SuppressWarnings("all") @SuppressWarnings("all")
@TestMetadata("compiler/util-klib-abi/testData/cinterop") @TestMetadata("compiler/testData/klib/dump-abi/cinterop")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NativeCInteropLibraryAbiReaderTest extends AbstractNativeCInteropLibraryAbiReaderTest { public class NativeCInteropLibraryAbiReaderTest extends AbstractNativeCInteropLibraryAbiReaderTest {
@Test @Test
public void testAllFilesPresentInCinterop() throws Exception { public void testAllFilesPresentInCinterop() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/util-klib-abi/testData/cinterop"), Pattern.compile("^(.+)\\.kt$"), null, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/klib/dump-abi/cinterop"), Pattern.compile("^(.+)\\.kt$"), null, true);
} }
@Test @Test
@TestMetadata("interop_class_inheritor.kt") @TestMetadata("interop_class_inheritor.kt")
public void testInterop_class_inheritor() throws Exception { public void testInterop_class_inheritor() throws Exception {
runTest("compiler/util-klib-abi/testData/cinterop/interop_class_inheritor.kt"); runTest("compiler/testData/klib/dump-abi/cinterop/interop_class_inheritor.kt");
} }
} }
@@ -17,149 +17,149 @@ import java.util.regex.Pattern;
/** This class is generated by {@link org.jetbrains.kotlin.generators.tests.GenerateNativeTestsKt}. DO NOT MODIFY MANUALLY */ /** This class is generated by {@link org.jetbrains.kotlin.generators.tests.GenerateNativeTestsKt}. DO NOT MODIFY MANUALLY */
@SuppressWarnings("all") @SuppressWarnings("all")
@TestMetadata("compiler/util-klib-abi/testData/content") @TestMetadata("compiler/testData/klib/dump-abi/content")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
public class NativeLibraryAbiReaderTest extends AbstractNativeLibraryAbiReaderTest { public class NativeLibraryAbiReaderTest extends AbstractNativeLibraryAbiReaderTest {
@Test @Test
public void testAllFilesPresentInContent() throws Exception { public void testAllFilesPresentInContent() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/util-klib-abi/testData/content"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.NATIVE, true); KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/klib/dump-abi/content"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.NATIVE, true);
} }
@Test @Test
@TestMetadata("callables.kt") @TestMetadata("callables.kt")
public void testCallables() throws Exception { public void testCallables() throws Exception {
runTest("compiler/util-klib-abi/testData/content/callables.kt"); runTest("compiler/testData/klib/dump-abi/content/callables.kt");
} }
@Test @Test
@TestMetadata("classifiers.kt") @TestMetadata("classifiers.kt")
public void testClassifiers() throws Exception { public void testClassifiers() throws Exception {
runTest("compiler/util-klib-abi/testData/content/classifiers.kt"); runTest("compiler/testData/klib/dump-abi/content/classifiers.kt");
} }
@Test @Test
@TestMetadata("excluded_classes_1.kt") @TestMetadata("excluded_classes_1.kt")
public void testExcluded_classes_1() throws Exception { public void testExcluded_classes_1() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_classes_1.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_classes_1.kt");
} }
@Test @Test
@TestMetadata("excluded_classes_2.kt") @TestMetadata("excluded_classes_2.kt")
public void testExcluded_classes_2() throws Exception { public void testExcluded_classes_2() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_classes_2.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_classes_2.kt");
} }
@Test @Test
@TestMetadata("excluded_classes_3.kt") @TestMetadata("excluded_classes_3.kt")
public void testExcluded_classes_3() throws Exception { public void testExcluded_classes_3() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_classes_3.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_classes_3.kt");
} }
@Test @Test
@TestMetadata("excluded_packages_non_root_1.kt") @TestMetadata("excluded_packages_non_root_1.kt")
public void testExcluded_packages_non_root_1() throws Exception { public void testExcluded_packages_non_root_1() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_packages_non_root_1.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_packages_non_root_1.kt");
} }
@Test @Test
@TestMetadata("excluded_packages_non_root_2.kt") @TestMetadata("excluded_packages_non_root_2.kt")
public void testExcluded_packages_non_root_2() throws Exception { public void testExcluded_packages_non_root_2() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_packages_non_root_2.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_packages_non_root_2.kt");
} }
@Test @Test
@TestMetadata("excluded_packages_non_root_3.kt") @TestMetadata("excluded_packages_non_root_3.kt")
public void testExcluded_packages_non_root_3() throws Exception { public void testExcluded_packages_non_root_3() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_packages_non_root_3.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_packages_non_root_3.kt");
} }
@Test @Test
@TestMetadata("excluded_packages_non_root_4.kt") @TestMetadata("excluded_packages_non_root_4.kt")
public void testExcluded_packages_non_root_4() throws Exception { public void testExcluded_packages_non_root_4() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_packages_non_root_4.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_packages_non_root_4.kt");
} }
@Test @Test
@TestMetadata("excluded_packages_root_1.kt") @TestMetadata("excluded_packages_root_1.kt")
public void testExcluded_packages_root_1() throws Exception { public void testExcluded_packages_root_1() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_packages_root_1.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_packages_root_1.kt");
} }
@Test @Test
@TestMetadata("excluded_packages_root_2.kt") @TestMetadata("excluded_packages_root_2.kt")
public void testExcluded_packages_root_2() throws Exception { public void testExcluded_packages_root_2() throws Exception {
runTest("compiler/util-klib-abi/testData/content/excluded_packages_root_2.kt"); runTest("compiler/testData/klib/dump-abi/content/excluded_packages_root_2.kt");
} }
@Test @Test
@TestMetadata("inheritance.kt") @TestMetadata("inheritance.kt")
public void testInheritance() throws Exception { public void testInheritance() throws Exception {
runTest("compiler/util-klib-abi/testData/content/inheritance.kt"); runTest("compiler/testData/klib/dump-abi/content/inheritance.kt");
} }
@Test @Test
@TestMetadata("root_package.kt") @TestMetadata("root_package.kt")
public void testRoot_package() throws Exception { public void testRoot_package() throws Exception {
runTest("compiler/util-klib-abi/testData/content/root_package.kt"); runTest("compiler/testData/klib/dump-abi/content/root_package.kt");
} }
@Test @Test
@TestMetadata("specific_types_dnn.kt") @TestMetadata("specific_types_dnn.kt")
public void testSpecific_types_dnn() throws Exception { public void testSpecific_types_dnn() throws Exception {
runTest("compiler/util-klib-abi/testData/content/specific_types_dnn.kt"); runTest("compiler/testData/klib/dump-abi/content/specific_types_dnn.kt");
} }
@Test @Test
@TestMetadata("type_parameters.kt") @TestMetadata("type_parameters.kt")
public void testType_parameters() throws Exception { public void testType_parameters() throws Exception {
runTest("compiler/util-klib-abi/testData/content/type_parameters.kt"); runTest("compiler/testData/klib/dump-abi/content/type_parameters.kt");
} }
@Test @Test
@TestMetadata("value_parameters.kt") @TestMetadata("value_parameters.kt")
public void testValue_parameters() throws Exception { public void testValue_parameters() throws Exception {
runTest("compiler/util-klib-abi/testData/content/value_parameters.kt"); runTest("compiler/testData/klib/dump-abi/content/value_parameters.kt");
} }
@Test @Test
@TestMetadata("visibilities.kt") @TestMetadata("visibilities.kt")
public void testVisibilities() throws Exception { public void testVisibilities() throws Exception {
runTest("compiler/util-klib-abi/testData/content/visibilities.kt"); runTest("compiler/testData/klib/dump-abi/content/visibilities.kt");
} }
@Test @Test
@TestMetadata("with_non_public_markers_1.kt") @TestMetadata("with_non_public_markers_1.kt")
public void testWith_non_public_markers_1() throws Exception { public void testWith_non_public_markers_1() throws Exception {
runTest("compiler/util-klib-abi/testData/content/with_non_public_markers_1.kt"); runTest("compiler/testData/klib/dump-abi/content/with_non_public_markers_1.kt");
} }
@Test @Test
@TestMetadata("with_non_public_markers_2.kt") @TestMetadata("with_non_public_markers_2.kt")
public void testWith_non_public_markers_2() throws Exception { public void testWith_non_public_markers_2() throws Exception {
runTest("compiler/util-klib-abi/testData/content/with_non_public_markers_2.kt"); runTest("compiler/testData/klib/dump-abi/content/with_non_public_markers_2.kt");
} }
@Test @Test
@TestMetadata("with_non_public_markers_3.kt") @TestMetadata("with_non_public_markers_3.kt")
public void testWith_non_public_markers_3() throws Exception { public void testWith_non_public_markers_3() throws Exception {
runTest("compiler/util-klib-abi/testData/content/with_non_public_markers_3.kt"); runTest("compiler/testData/klib/dump-abi/content/with_non_public_markers_3.kt");
} }
@Test @Test
@TestMetadata("with_non_public_markers_4.kt") @TestMetadata("with_non_public_markers_4.kt")
public void testWith_non_public_markers_4() throws Exception { public void testWith_non_public_markers_4() throws Exception {
runTest("compiler/util-klib-abi/testData/content/with_non_public_markers_4.kt"); runTest("compiler/testData/klib/dump-abi/content/with_non_public_markers_4.kt");
} }
@Test @Test
@TestMetadata("with_non_public_markers_5.kt") @TestMetadata("with_non_public_markers_5.kt")
public void testWith_non_public_markers_5() throws Exception { public void testWith_non_public_markers_5() throws Exception {
runTest("compiler/util-klib-abi/testData/content/with_non_public_markers_5.kt"); runTest("compiler/testData/klib/dump-abi/content/with_non_public_markers_5.kt");
} }
@Test @Test
@TestMetadata("with_non_public_markers_private_annotations.kt") @TestMetadata("with_non_public_markers_private_annotations.kt")
public void testWith_non_public_markers_private_annotations() throws Exception { public void testWith_non_public_markers_private_annotations() throws Exception {
runTest("compiler/util-klib-abi/testData/content/with_non_public_markers_private_annotations.kt"); runTest("compiler/testData/klib/dump-abi/content/with_non_public_markers_private_annotations.kt");
} }
} }
@@ -278,14 +278,14 @@ fun main() {
} }
generateTestGroupSuiteWithJUnit5 { generateTestGroupSuiteWithJUnit5 {
testGroup("native/native.tests/tests-gen", "compiler/util-klib-abi/testData") { testGroup("native/native.tests/tests-gen", "compiler/testData/klib/dump-abi") {
testClass<AbstractNativeLibraryAbiReaderTest>( testClass<AbstractNativeLibraryAbiReaderTest>(
suiteTestClassName = "NativeLibraryAbiReaderTest" suiteTestClassName = "NativeLibraryAbiReaderTest"
) { ) {
model("content", targetBackend = TargetBackend.NATIVE) model("content", targetBackend = TargetBackend.NATIVE)
} }
} }
testGroup("native/native.tests/tests-gen", "compiler/util-klib-abi/testData") { testGroup("native/native.tests/tests-gen", "compiler/testData/klib/dump-abi") {
testClass<AbstractNativeLibraryAbiReaderTest>( testClass<AbstractNativeLibraryAbiReaderTest>(
suiteTestClassName = "FirNativeLibraryAbiReaderTest", suiteTestClassName = "FirNativeLibraryAbiReaderTest",
annotations = listOf( annotations = listOf(
@@ -296,14 +296,14 @@ fun main() {
} }
} }
testGroup("native/native.tests/tests-gen", "compiler/util-klib-abi/testData") { testGroup("native/native.tests/tests-gen", "compiler/testData/klib/dump-abi") {
testClass<AbstractNativeCInteropLibraryAbiReaderTest>( testClass<AbstractNativeCInteropLibraryAbiReaderTest>(
suiteTestClassName = "NativeCInteropLibraryAbiReaderTest" suiteTestClassName = "NativeCInteropLibraryAbiReaderTest"
) { ) {
model("cinterop") model("cinterop")
} }
} }
testGroup("native/native.tests/tests-gen", "compiler/util-klib-abi/testData") { testGroup("native/native.tests/tests-gen", "compiler/testData/klib/dump-abi") {
testClass<AbstractNativeCInteropLibraryAbiReaderTest>( testClass<AbstractNativeCInteropLibraryAbiReaderTest>(
suiteTestClassName = "FirNativeCInteropLibraryAbiReaderTest", suiteTestClassName = "FirNativeCInteropLibraryAbiReaderTest",
annotations = listOf( annotations = listOf(