[FIR2IR] Adding 2 new runners for fir2ir-specific tests

This commit is contained in:
Nikolay Lunyak
2021-07-15 15:37:16 +03:00
committed by TeamCityServer
parent a6e477fa88
commit 25d2e61a82
7 changed files with 88 additions and 0 deletions
@@ -161,6 +161,20 @@ fun generateJUnit5CompilerTests(args: Array<String>) {
}
}
testGroup(testsRoot = "compiler/fir/fir2ir/tests-gen", testDataRoot = "compiler/fir/fir2ir/testData") {
testClass<AbstractFirBlackBoxCodegenTest>(
suiteTestClassName = "FirSpecificBlackBoxCodegenTestGenerated"
) {
model("codegen/box")
}
testClass<AbstractFir2IrTextTest>(
suiteTestClassName = "Fir2IrSpecificTextTestGenerated"
) {
model("ir/irText")
}
}
testGroup("compiler/fir/analysis-tests/tests-gen", "compiler/fir/analysis-tests/testData") {
testClass<AbstractFirDiagnosticTest> {
model("resolve", pattern = TestGeneratorUtil.KT_WITHOUT_DOTS_IN_NAME)