summaryrefslogtreecommitdiff
path: root/src/partest-extras/scala/tools/partest/ScriptTest.scala
blob: 24a4121b540018913156f6fe7b3f03da6368b60f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* NSC -- new Scala compiler
 * Copyright 2005-2013 LAMP/EPFL
 */

package scala.tools.partest

import scala.reflect.internal.util.ScalaClassLoader

/** A `ScriptTest` is a `DirectTest` for which the code
 *  is the contents of a script file.
 */
abstract class ScriptTest extends DirectTest {
  def testmain = "TestMain"
  override def extraSettings = s"-usejavacp -Xscript $testmain"
  def scriptPath = testPath changeExtension "script"
  def code = scriptPath.toFile.slurp
  def show() = {
    compile()
    ScalaClassLoader(getClass.getClassLoader).run(testmain, Seq.empty[String])
  }
}