aboutsummaryrefslogtreecommitdiff
path: root/test/dotty
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-10-19 15:03:26 +0200
committerGuillaume Martres <smarter@ubuntu.com>2016-11-22 01:35:06 +0100
commit805884cb664467ae97922e1afe44891c64fcfde2 (patch)
treebf2b588171964804693e8c60bdba536ca7a3af2d /test/dotty
parent2769e1b5b680868433c91b37d44f9420d728c4ac (diff)
downloaddotty-805884cb664467ae97922e1afe44891c64fcfde2.tar.gz
dotty-805884cb664467ae97922e1afe44891c64fcfde2.tar.bz2
dotty-805884cb664467ae97922e1afe44891c64fcfde2.zip
Remove compiler when running applications via dotr
Diffstat (limited to 'test/dotty')
-rw-r--r--test/dotty/partest/DPConsoleRunner.scala6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/dotty/partest/DPConsoleRunner.scala b/test/dotty/partest/DPConsoleRunner.scala
index d445722c9..18fac4de8 100644
--- a/test/dotty/partest/DPConsoleRunner.scala
+++ b/test/dotty/partest/DPConsoleRunner.scala
@@ -302,7 +302,11 @@ class DPTestRunner(testFile: File, suiteRunner: DPSuiteRunner) extends nest.Runn
}
// override to add dotty and scala jars to classpath
- override def extraClasspath = suiteRunner.fileManager.asInstanceOf[DottyFileManager].extraJarList ::: super.extraClasspath
+ override def extraClasspath = {
+ val cp = suiteRunner.fileManager.asInstanceOf[DottyFileManager].extraJarList ::: super.extraClasspath
+ println(s"extraClasspath: $cp")
+ cp
+ }
// override to keep class files if failed and delete clog if ok
override def cleanup = if (lastState.isOk) {