[K2/N] Add FirInfrastructureTestGenerated

Merge-request: KT-MR-8774
Merged-by: Vladimir Sukharev <Vladimir.Sukharev@jetbrains.com>
This commit is contained in:
Vladimir Sukharev
2023-04-10 13:40:06 +00:00
committed by Space Team
parent 820d027676
commit 85450c93a6
2 changed files with 297 additions and 0 deletions
@@ -87,6 +87,16 @@ fun main() {
}
}
testGroup("native/native.tests/tests-gen", "native/native.tests/testData") {
testClass<AbstractNativeBlackBoxTest>(
suiteTestClassName = "FirInfrastructureTestGenerated",
annotations = listOf(infrastructure(), firInfrastructure(), provider<UseStandardTestCaseGroupProvider>(), provider<FirPipeline>())
) {
model("samples")
model("samples2")
}
}
// Partial linkage tests.
testGroup("native/native.tests/tests-gen", "compiler/testData") {
testClass<AbstractNativePartialLinkageTest>(
@@ -207,6 +217,7 @@ private fun firCodegen() = annotation(Tag::class.java, "firCodegen")
private fun debugger() = annotation(Tag::class.java, "debugger")
private fun infrastructure() = annotation(Tag::class.java, "infrastructure")
private fun k1Infrastructure() = annotation(Tag::class.java, "k1Infrastructure")
private fun firInfrastructure() = annotation(Tag::class.java, "firInfrastructure")
private fun k1libContents() = annotation(Tag::class.java, "k1libContents")
private fun k2libContents() = annotation(Tag::class.java, "k2libContents")
private fun firKLibContents() = annotation(Tag::class.java, "firKlibContents")