Add new set of tests to run JVM checks with IR inliner

This commit is contained in:
Ivan Kylchik
2022-12-08 18:25:33 +01:00
committed by Space Team
parent 1c210822ea
commit 86b3ec73d1
21 changed files with 71091 additions and 25 deletions
@@ -88,11 +88,19 @@ fun generateJUnit5CompilerTests(args: Array<String>) {
model("codegen/box")
}
testClass<AbstractIrBlackBoxCodegenWithIrInlinerTest> {
model("codegen/box")
}
testClass<AbstractSteppingTest> {
model("debug/stepping")
}
testClass<AbstractIrSteppingTest> {
testClass<AbstractIrSteppingWithBytecodeInlinerTest> {
model("debug/stepping")
}
testClass<AbstractIrSteppingWithIrInlinerTest> {
model("debug/stepping")
}
@@ -136,7 +144,11 @@ fun generateJUnit5CompilerTests(args: Array<String>) {
model("codegen/boxInline")
}
testClass<AbstractIrBlackBoxInlineCodegenTest> {
testClass<AbstractIrBlackBoxInlineCodegenWithBytecodeInlinerTest> {
model("codegen/boxInline")
}
testClass<AbstractIrBlackBoxInlineCodegenWithIrInlinerTest> {
model("codegen/boxInline")
}
@@ -254,11 +266,19 @@ fun generateJUnit5CompilerTests(args: Array<String>) {
model("codegen/boxModernJdk")
}
testClass<AbstractFirLightTreeBlackBoxInlineCodegenTest> {
testClass<AbstractFirPsiBlackBoxInlineCodegenWithBytecodeInlinerTest> {
model("codegen/boxInline")
}
testClass<AbstractFirPsiBlackBoxInlineCodegenTest> {
testClass<AbstractFirPsiBlackBoxInlineCodegenWithIrInlinerTest> {
model("codegen/boxInline")
}
testClass<AbstractFirLightTreeBlackBoxInlineCodegenWithBytecodeInlinerTest> {
model("codegen/boxInline")
}
testClass<AbstractFirLightTreeBlackBoxInlineCodegenWithIrInlinerTest> {
model("codegen/boxInline")
}