Make fix test:

- [JS IR] Unmute fixed tests
 - [IrText] Update testdata
 - [WASM] Temporary turn wasm test off
 - [FirText] Temporary turn fit text tests off
 - [JVM IR] Turn off klib jvm test
 - [IR] Add new test
This commit is contained in:
Roman Artemev
2020-01-27 16:17:51 +03:00
committed by romanart
parent 46491c12ee
commit e57d34dd9e
47 changed files with 237 additions and 166 deletions
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: ANY
annotation class TestAnn(val x: String)
enum class TestEnum {
@@ -44,7 +44,7 @@ FILE fqName:<root> fileName:/enumEntriesWithAnnotations.kt
TestAnn(x = 'ENTRY2')
init: EXPRESSION_BODY
ENUM_CONSTRUCTOR_CALL 'private constructor <init> () [primary] declared in <root>.TestEnum.ENTRY2'
class: CLASS ENUM_ENTRY name:ENTRY2 modality:FINAL visibility:public superTypes:[<root>.TestEnum]
class: CLASS ENUM_ENTRY name:ENTRY2 modality:FINAL visibility:private superTypes:[<root>.TestEnum]
annotations:
TestAnn(x = 'ENTRY2')
$this: VALUE_PARAMETER INSTANCE_RECEIVER name:<this> type:<root>.TestEnum.ENTRY2
@@ -52,7 +52,7 @@ FILE fqName:<root> fileName:/enumEntriesWithAnnotations.kt
BLOCK_BODY
TYPE_OP type=kotlin.Unit origin=IMPLICIT_COERCION_TO_UNIT typeOperand=kotlin.Unit
ENUM_CONSTRUCTOR_CALL 'private constructor <init> () [primary] declared in <root>.TestEnum'
INSTANCE_INITIALIZER_CALL classDescriptor='CLASS ENUM_ENTRY name:ENTRY2 modality:FINAL visibility:public superTypes:[<root>.TestEnum]'
INSTANCE_INITIALIZER_CALL classDescriptor='CLASS ENUM_ENTRY name:ENTRY2 modality:FINAL visibility:private superTypes:[<root>.TestEnum]'
PROPERTY name:x visibility:public modality:FINAL [val]
FIELD PROPERTY_BACKING_FIELD name:x type:kotlin.Int visibility:private [final]
EXPRESSION_BODY
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: ANY
enum class En { A, B, C, D }
annotation class TestAnn(val x: En)