JVM IR: Enable evaluate expression tests for the JVM IR backend

This commit is contained in:
Steven Schäfer
2020-09-22 11:53:24 +02:00
committed by max-kammerer
parent 33969c5f9a
commit 48b736e551
33 changed files with 1476 additions and 23 deletions
@@ -253,6 +253,11 @@ fun main(args: Array<String>) {
model("evaluation/multipleBreakpoints", testMethod = "doMultipleBreakpointsTest")
}
testClass<AbstractIrKotlinEvaluateExpressionTest> {
model("evaluation/singleBreakpoint", testMethod = "doSingleBreakpointTest", targetBackend = TargetBackend.JVM_IR)
model("evaluation/multipleBreakpoints", testMethod = "doMultipleBreakpointsTest", targetBackend = TargetBackend.JVM_IR)
}
testClass<AbstractSelectExpressionForDebuggerTest> {
model("selectExpression", recursive = false)
model("selectExpression/disallowMethodCalls", testMethod = "doTestWoMethodCalls")