From 115e13b323e9ca845302a2c0ee0367e03cb8379b Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Sat, 21 Dec 2013 19:36:28 +0100 Subject: Starting to test compiling the compiler. --- test/test/CompilerTest.scala | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'test/test/CompilerTest.scala') diff --git a/test/test/CompilerTest.scala b/test/test/CompilerTest.scala index 00c288546..106020106 100644 --- a/test/test/CompilerTest.scala +++ b/test/test/CompilerTest.scala @@ -20,4 +20,23 @@ class CompilerTest extends DottyTest { def compileFile(prefix: String, fileName: String, args: List[String] = Nil, xerrors: Int = 0): Unit = compileArgs((s"$prefix$fileName.scala" :: args).toArray, xerrors) + def compileDir(path: String, args: List[String] = Nil, xerrors: Int = 0): Unit = { + val dir = Directory(path) + val fileNames = dir.files.toArray.map(_.toString).filter(_ endsWith ".scala") + compileArgs(fileNames ++ args, xerrors) + } + +} +object CompilerText extends App { + +// val dotcDir = "/Users/odersky/workspace/dotty/src/dotty/" + +// new CompilerTest().compileFile(dotcDir + "tools/dotc/", "CompilationUnit") +// new CompilerTest().compileFile(dotcDir + "tools/dotc/", "Compiler") +// new CompilerTest().compileFile(dotcDir + "tools/dotc/", "Driver") +// new CompilerTest().compileFile(dotcDir + "tools/dotc/", "Main") +// new CompilerTest().compileFile(dotcDir + "tools/dotc/", "Run") + +// new CompilerTest().compileDir(dotcDir + "tools/dotc") + // new CompilerTest().compileFile(dotcDir + "tools/dotc/", "Run") } \ No newline at end of file -- cgit v1.2.3