
scala.tools.nsc.interactive.tests.InteractiveTestSettings.scala Maven / Gradle / Ivy
/*
* Scala (https://www.scala-lang.org)
*
* Copyright EPFL and Lightbend, Inc.
*
* Licensed under Apache License 2.0
* (http://www.apache.org/licenses/LICENSE-2.0).
*
* See the NOTICE file distributed with this work for
* additional information regarding copyright ownership.
*/
package scala.tools.nsc
package interactive
package tests
import java.io.File.pathSeparatorChar
import java.io.File.separatorChar
import scala.tools.nsc.interactive.tests.core.PresentationCompilerInstance
import scala.tools.nsc.io.Path
import core.Reporter
import core.TestSettings
trait InteractiveTestSettings extends TestSettings with PresentationCompilerInstance {
/** Prepare the settings object. Load the .opts file and adjust all paths from the
* Unix-like syntax to the platform specific syntax. This is necessary so that a
* single .opts file can be used on all platforms.
*
* @note Bootclasspath is treated specially. If there is a -bootclasspath option in
* the file, the 'usejavacp' setting is set to false. This ensures that the
* bootclasspath takes precedence over the scala-library used to run the current
* test.
*/
override protected def prepareSettings(settings: Settings): Unit = {
def adjustPaths(paths: settings.PathSetting*): Unit = {
for (p <- paths if argsString.contains(p.name)) p.value = p.value.map {
case '/' => separatorChar
case ':' => pathSeparatorChar
case c => c
}
}
// need this so that the classpath comes from what partest
// instead of scala.home
settings.usejavacp.value = !argsString.contains("-bootclasspath")
// pass any options coming from outside
settings.processArgumentString(argsString) match {
case (false, rest) =>
println("error processing arguments (unprocessed: %s)".format(rest))
case _ => ()
}
// Make the --sourcepath path provided in the .flags file (if any) relative to the test's base directory
if(settings.sourcepath.isSetByUser)
settings.sourcepath.value = (baseDir / Path(settings.sourcepath.value)).path
adjustPaths(settings.bootclasspath, settings.classpath, settings.javabootclasspath, settings.sourcepath)
}
protected def argsString: String = ""
override protected def printClassPath(implicit reporter: Reporter): Unit = {
reporter.println("\toutDir: %s".format(outDir.path))
reporter.println("\tbaseDir: %s".format(baseDir.path))
reporter.println("\targsString: %s".format(argsString))
super.printClassPath(reporter)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy