Generate REPL interpreter tests

This commit is contained in:
Alexander Udalov
2014-07-06 05:32:22 +04:00
parent 9ae95c1e5c
commit d373c09cfb
4 changed files with 182 additions and 155 deletions
@@ -40,6 +40,7 @@ import org.jetbrains.jet.lang.resolve.lazy.AbstractLazyResolveRecursiveComparing
import org.jetbrains.jet.modules.xml.AbstractModuleXmlParserTest
import org.jetbrains.jet.jvm.compiler.AbstractWriteSignatureTest
import org.jetbrains.jet.cli.AbstractKotlincExecutableTest
import org.jetbrains.jet.repl.AbstractReplInterpreterTest
import org.jetbrains.jet.cfg.AbstractControlFlowTest
import org.jetbrains.jet.psi.AbstractJetPsiMatcherTest
import org.jetbrains.jet.checkers.AbstractJetPsiCheckerTest
@@ -252,6 +253,10 @@ fun main(args: Array<String>) {
model("cli/js", extension = "args", testMethod = "doJsTest")
}
testClass(javaClass<AbstractReplInterpreterTest>()) {
model("repl", extension = "repl")
}
testClass(javaClass<AbstractControlFlowTest>()) {
model("cfg")
}