Remove a test that doesn't make sense anymore
This commit is contained in:
committed by
Space Team
parent
6a40a7e471
commit
b429e2f34f
-6
@@ -35303,12 +35303,6 @@ public class FirBlackBoxCodegenTestGenerated extends AbstractFirBlackBoxCodegenT
|
||||
runTest("compiler/testData/codegen/box/properties/referenceToJavaFieldViaBridge.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("sideEffectInTopLevelInitializerMultiModule.kt")
|
||||
public void testSideEffectInTopLevelInitializerMultiModule() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/sideEffectInTopLevelInitializerMultiModule.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("substituteJavaSuperField.kt")
|
||||
public void testSubstituteJavaSuperField() throws Exception {
|
||||
|
||||
-31
@@ -1,31 +0,0 @@
|
||||
// IGNORE_BACKEND_FIR: JVM_IR
|
||||
// FIR status: not supported in JVM
|
||||
// IGNORE_BACKEND: JVM, JVM_IR
|
||||
// IGNORE_BACKEND: NATIVE
|
||||
// IGNORE_BACKEND: JS_IR
|
||||
// IGNORE_BACKEND: WASM
|
||||
// WASM_MUTE_REASON: LAZY_INIT_PROPERTIES
|
||||
// IGNORE_LIGHT_ANALYSIS
|
||||
// MODULE: lib1
|
||||
// FILE: lib1.kt
|
||||
|
||||
// KT-34273
|
||||
|
||||
var foo = "Fail"
|
||||
|
||||
// MODULE: lib2(lib1)
|
||||
// FILE: lib2.kt
|
||||
|
||||
private val bar = run {
|
||||
foo = "OK"
|
||||
42
|
||||
}
|
||||
|
||||
|
||||
// MODULE: main(lib1, lib2)
|
||||
// FILE: main.kt
|
||||
|
||||
// TODO: the proper behaviour of this test is still open design issue
|
||||
// K/N & K/JS used to go like this when JVM fails
|
||||
|
||||
fun box(): String = foo
|
||||
-6
@@ -34463,12 +34463,6 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
|
||||
runTest("compiler/testData/codegen/box/properties/referenceToJavaFieldViaBridge.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("sideEffectInTopLevelInitializerMultiModule.kt")
|
||||
public void testSideEffectInTopLevelInitializerMultiModule() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/sideEffectInTopLevelInitializerMultiModule.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("substituteJavaSuperField.kt")
|
||||
public void testSubstituteJavaSuperField() throws Exception {
|
||||
|
||||
-6
@@ -35303,12 +35303,6 @@ public class IrBlackBoxCodegenTestGenerated extends AbstractIrBlackBoxCodegenTes
|
||||
runTest("compiler/testData/codegen/box/properties/referenceToJavaFieldViaBridge.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("sideEffectInTopLevelInitializerMultiModule.kt")
|
||||
public void testSideEffectInTopLevelInitializerMultiModule() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/sideEffectInTopLevelInitializerMultiModule.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("substituteJavaSuperField.kt")
|
||||
public void testSubstituteJavaSuperField() throws Exception {
|
||||
|
||||
-5
@@ -28970,11 +28970,6 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
|
||||
runTest("compiler/testData/codegen/box/properties/genericWithSameName.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("sideEffectInTopLevelInitializerMultiModule.kt")
|
||||
public void ignoreSideEffectInTopLevelInitializerMultiModule() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/sideEffectInTopLevelInitializerMultiModule.kt");
|
||||
}
|
||||
|
||||
private void runTest(String testDataFilePath) throws Exception {
|
||||
KotlinTestUtils.runTest(this::doTest, TargetBackend.JVM, testDataFilePath);
|
||||
}
|
||||
|
||||
-6
@@ -25309,12 +25309,6 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/properties/privatePropertyWithoutBackingField.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("sideEffectInTopLevelInitializerMultiModule.kt")
|
||||
public void testSideEffectInTopLevelInitializerMultiModule() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/sideEffectInTopLevelInitializerMultiModule.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("twoAnnotatedExtensionPropertiesWithoutBackingFields.kt")
|
||||
public void testTwoAnnotatedExtensionPropertiesWithoutBackingFields() throws Exception {
|
||||
|
||||
-6
@@ -25357,12 +25357,6 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/properties/privatePropertyWithoutBackingField.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("sideEffectInTopLevelInitializerMultiModule.kt")
|
||||
public void testSideEffectInTopLevelInitializerMultiModule() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/sideEffectInTopLevelInitializerMultiModule.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("twoAnnotatedExtensionPropertiesWithoutBackingFields.kt")
|
||||
public void testTwoAnnotatedExtensionPropertiesWithoutBackingFields() throws Exception {
|
||||
|
||||
-5
@@ -22621,11 +22621,6 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest
|
||||
runTest("compiler/testData/codegen/box/properties/privatePropertyWithoutBackingField.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("sideEffectInTopLevelInitializerMultiModule.kt")
|
||||
public void testSideEffectInTopLevelInitializerMultiModule() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/sideEffectInTopLevelInitializerMultiModule.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("twoAnnotatedExtensionPropertiesWithoutBackingFields.kt")
|
||||
public void testTwoAnnotatedExtensionPropertiesWithoutBackingFields() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/twoAnnotatedExtensionPropertiesWithoutBackingFields.kt");
|
||||
|
||||
-6
@@ -28170,12 +28170,6 @@ public class NativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTest
|
||||
runTest("compiler/testData/codegen/box/properties/privatePropertyWithoutBackingField.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("sideEffectInTopLevelInitializerMultiModule.kt")
|
||||
public void testSideEffectInTopLevelInitializerMultiModule() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/sideEffectInTopLevelInitializerMultiModule.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("twoAnnotatedExtensionPropertiesWithoutBackingFields.kt")
|
||||
public void testTwoAnnotatedExtensionPropertiesWithoutBackingFields() throws Exception {
|
||||
|
||||
Reference in New Issue
Block a user