Minor. Update test

This commit is contained in:
Ilmir Usmanov
2022-02-16 15:29:06 +01:00
committed by teamcity
parent 480c15277d
commit 05457c291d
9 changed files with 12 additions and 9 deletions
@@ -21148,7 +21148,7 @@ public class FirBlackBoxCodegenTestGenerated extends AbstractFirBlackBoxCodegenT
@Test
@TestMetadata("kt51254.kt")
public void testKt51254() throws Exception {
runTest("compiler/testData/codegen/box/inlineClasses/kt51254.kt");
runTest("compiler/testData/codegen/box/inlineClasses/kt51254.kt", TransformersFunctions.getReplaceOptionalJvmInlineAnnotationWithReal());
}
@Test
+3 -2
View File
@@ -1,7 +1,8 @@
// WITH_STDLIB
// IGNORE_BACKEND: JVM, WASM, JS, JS_IR
// WORKS_WHEN_VALUE_CLASS
// IGNORE_BACKEND: JVM
@JvmInline
OPTIONAL_JVM_INLINE_ANNOTATION
value class Inlined(val value: Int)
sealed interface A <T: Inlined> {
@@ -20722,7 +20722,7 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
@Test
@TestMetadata("kt51254.kt")
public void testKt51254() throws Exception {
runTest("compiler/testData/codegen/box/inlineClasses/kt51254.kt");
runTest("compiler/testData/codegen/box/inlineClasses/kt51254.kt", TransformersFunctions.getReplaceOptionalJvmInlineAnnotationWithReal());
}
@Test
@@ -21148,7 +21148,7 @@ public class IrBlackBoxCodegenTestGenerated extends AbstractIrBlackBoxCodegenTes
@Test
@TestMetadata("kt51254.kt")
public void testKt51254() throws Exception {
runTest("compiler/testData/codegen/box/inlineClasses/kt51254.kt");
runTest("compiler/testData/codegen/box/inlineClasses/kt51254.kt", TransformersFunctions.getReplaceOptionalJvmInlineAnnotationWithReal());
}
@Test
@@ -16040,7 +16040,7 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
@TestMetadata("kt51254.kt")
public void ignoreKt51254() throws Exception {
runTest("compiler/testData/codegen/box/inlineClasses/kt51254.kt");
runTest("compiler/testData/codegen/box/inlineClasses/kt51254.kt", TransformersFunctions.getReplaceOptionalJvmInlineAnnotationWithReal());
}
@TestMetadata("mappingOfBoxedFlexibleInlineClassTypeGeneric.kt")
@@ -16326,7 +16326,7 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
@Test
@TestMetadata("kt51254.kt")
public void testKt51254() throws Exception {
runTest("compiler/testData/codegen/box/inlineClasses/kt51254.kt");
runTest("compiler/testData/codegen/box/inlineClasses/kt51254.kt", TransformersFunctions.getRemoveOptionalJvmInlineAnnotation());
}
@Test
@@ -16290,7 +16290,7 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
@Test
@TestMetadata("kt51254.kt")
public void testKt51254() throws Exception {
runTest("compiler/testData/codegen/box/inlineClasses/kt51254.kt");
runTest("compiler/testData/codegen/box/inlineClasses/kt51254.kt", TransformersFunctions.getRemoveOptionalJvmInlineAnnotation());
}
@Test
@@ -13719,7 +13719,7 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest
@TestMetadata("kt51254.kt")
public void testKt51254() throws Exception {
runTest("compiler/testData/codegen/box/inlineClasses/kt51254.kt");
runTest("compiler/testData/codegen/box/inlineClasses/kt51254.kt", TransformersFunctions.getRemoveOptionalJvmInlineAnnotation());
}
@TestMetadata("mangledDefaultParameterFunction.kt")
@@ -16188,6 +16188,7 @@ public class NativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTest
register("compiler/testData/codegen/box/inlineClasses/kt46554Generic.kt", TransformersFunctions.getRemoveOptionalJvmInlineAnnotation());
register("compiler/testData/codegen/box/inlineClasses/kt47762.kt", TransformersFunctions.getRemoveOptionalJvmInlineAnnotation());
register("compiler/testData/codegen/box/inlineClasses/kt47762Generic.kt", TransformersFunctions.getRemoveOptionalJvmInlineAnnotation());
register("compiler/testData/codegen/box/inlineClasses/kt51254.kt", TransformersFunctions.getRemoveOptionalJvmInlineAnnotation());
register("compiler/testData/codegen/box/inlineClasses/mangledDefaultParameterFunction.kt", TransformersFunctions.getRemoveOptionalJvmInlineAnnotation());
register("compiler/testData/codegen/box/inlineClasses/mangledDefaultParameterFunctionGeneric.kt", TransformersFunctions.getRemoveOptionalJvmInlineAnnotation());
register("compiler/testData/codegen/box/inlineClasses/mangledSuperCalls.kt", TransformersFunctions.getRemoveOptionalJvmInlineAnnotation());
@@ -17905,6 +17906,7 @@ public class NativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTest
@Test
@TestMetadata("kt51254.kt")
public void testKt51254() throws Exception {
// There is a registered source transformer for the testcase: TransformersFunctions.getRemoveOptionalJvmInlineAnnotation()
runTest("compiler/testData/codegen/box/inlineClasses/kt51254.kt");
}