are there examples of `AbstractKotlinCompilerTest`...
# compiler
j
are there examples of
AbstractKotlinCompilerTest
which target non-JVM backends? is that even supported? I want to validate things against the JVM bytecode, JS source, and i guess the LLVM IR too.
d
JS tests use the same test framework, you can check the setup in kotlin repo here https://github.com/JetBrains/kotlin/blob/master/js/js.tests/test/org/jetbrains/kotlin/js/test/ir/AbstractJsBlackBoxCodegenTestBase.kt I'm not sure if js tests are published in kotlin-compiler-test-framework.jar (don't remember exact name). If it's not, please create a youtrack ticket
Native tests use completely different framework and I'm not sure if it's possible to use it outside
j
Thanks! I'll look into it.