Use separate logic for filtering and skipping in collectAndFilterRealOverrides [KT-43487] (#3921)
This commit is contained in:
Generated
+5
@@ -25410,6 +25410,11 @@ public class IrJsCodegenBoxES6TestGenerated extends AbstractIrJsCodegenBoxES6Tes
|
||||
KotlinTestUtils.runTest0(this::doTest, TargetBackend.JS_IR_ES6, testDataFilePath);
|
||||
}
|
||||
|
||||
@TestMetadata("abstractClassWithFakeOverride.kt")
|
||||
public void testAbstractClassWithFakeOverride() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/traits/abstractClassWithFakeOverride.kt");
|
||||
}
|
||||
|
||||
public void testAllFilesPresentInTraits() throws Exception {
|
||||
KotlinTestUtils.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/traits"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR_ES6, true);
|
||||
}
|
||||
|
||||
Generated
+5
@@ -25410,6 +25410,11 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
|
||||
KotlinTestUtils.runTest0(this::doTest, TargetBackend.JS_IR, testDataFilePath);
|
||||
}
|
||||
|
||||
@TestMetadata("abstractClassWithFakeOverride.kt")
|
||||
public void testAbstractClassWithFakeOverride() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/traits/abstractClassWithFakeOverride.kt");
|
||||
}
|
||||
|
||||
public void testAllFilesPresentInTraits() throws Exception {
|
||||
KotlinTestUtils.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/traits"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR, true);
|
||||
}
|
||||
|
||||
+5
@@ -25425,6 +25425,11 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
|
||||
KotlinTestUtils.runTest0(this::doTest, TargetBackend.JS, testDataFilePath);
|
||||
}
|
||||
|
||||
@TestMetadata("abstractClassWithFakeOverride.kt")
|
||||
public void testAbstractClassWithFakeOverride() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/traits/abstractClassWithFakeOverride.kt");
|
||||
}
|
||||
|
||||
public void testAllFilesPresentInTraits() throws Exception {
|
||||
KotlinTestUtils.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/traits"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS, true);
|
||||
}
|
||||
|
||||
Generated
+5
@@ -13828,6 +13828,11 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest
|
||||
KotlinTestUtils.runTest0(this::doTest, TargetBackend.WASM, testDataFilePath);
|
||||
}
|
||||
|
||||
@TestMetadata("abstractClassWithFakeOverride.kt")
|
||||
public void testAbstractClassWithFakeOverride() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/traits/abstractClassWithFakeOverride.kt");
|
||||
}
|
||||
|
||||
public void testAllFilesPresentInTraits() throws Exception {
|
||||
KotlinTestUtils.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/traits"), Pattern.compile("^([^_](.+))\\.kt$"), null, TargetBackend.WASM, true);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user