aboutsummaryrefslogtreecommitdiff
path: root/compiler/test/dotty/tools/dotc/repl
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-11-23 18:55:14 +0100
committerFelix Mulder <felix.mulder@gmail.com>2016-11-24 09:44:20 +0100
commit0d507d721529c596594ee6fe2de9ba7b7696eb27 (patch)
tree0f5859b6263653622d927b9d505dda2911bb92e4 /compiler/test/dotty/tools/dotc/repl
parent9c1cb55478c7ce5708a36b67b65d857d8f907bd3 (diff)
downloaddotty-0d507d721529c596594ee6fe2de9ba7b7696eb27.tar.gz
dotty-0d507d721529c596594ee6fe2de9ba7b7696eb27.tar.bz2
dotty-0d507d721529c596594ee6fe2de9ba7b7696eb27.zip
make REPL tests look at DOTTY_EXTRA classpath entries
Diffstat (limited to 'compiler/test/dotty/tools/dotc/repl')
-rw-r--r--compiler/test/dotty/tools/dotc/repl/TestREPL.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/test/dotty/tools/dotc/repl/TestREPL.scala b/compiler/test/dotty/tools/dotc/repl/TestREPL.scala
index 70f701791..a38abcbab 100644
--- a/compiler/test/dotty/tools/dotc/repl/TestREPL.scala
+++ b/compiler/test/dotty/tools/dotc/repl/TestREPL.scala
@@ -24,7 +24,7 @@ class TestREPL(script: String) extends REPL {
override def context(ctx: Context) = {
val fresh = ctx.fresh
fresh.setSetting(ctx.settings.color, "never")
- fresh.setSetting(ctx.settings.classpath, Jars.dottyLib)
+ fresh.setSetting(ctx.settings.classpath, Jars.dottyReplDeps.mkString(":"))
fresh.initialize()(fresh)
fresh
}