aboutsummaryrefslogtreecommitdiff
path: root/compiler/test/dotty/tools/dotc/EntryPointsTest.scala
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/test/dotty/tools/dotc/EntryPointsTest.scala')
-rw-r--r--compiler/test/dotty/tools/dotc/EntryPointsTest.scala9
1 files changed, 1 insertions, 8 deletions
diff --git a/compiler/test/dotty/tools/dotc/EntryPointsTest.scala b/compiler/test/dotty/tools/dotc/EntryPointsTest.scala
index f095dc725..00918a282 100644
--- a/compiler/test/dotty/tools/dotc/EntryPointsTest.scala
+++ b/compiler/test/dotty/tools/dotc/EntryPointsTest.scala
@@ -20,14 +20,7 @@ import scala.collection.mutable.ListBuffer
class EntryPointsTest {
private val sources =
List("../tests/pos/HelloWorld.scala").map(p => new java.io.File(p).getPath())
- private val dottyInterfaces =
- new java.io.File(Jars.dottyInterfaces).getPath
- private val dottyLibrary =
- new java.io.File(Jars.dottyLib).getPath
- private val args =
- sources ++
- List("-d", "../out/") ++
- List("-classpath", dottyInterfaces + ":" + dottyLibrary)
+ private val args = sources ++ List("-d", "../out/", "-usejavacp")
@Test def runCompiler = {
val reporter = new CustomReporter