summaryrefslogtreecommitdiff
path: root/src/partest
diff options
context:
space:
mode:
authorSom Snytt <som.snytt@gmail.com>2013-04-23 00:58:12 -0700
committerSom Snytt <som.snytt@gmail.com>2013-05-23 01:20:24 -0700
commit63bd52781faa1192de1c87028d6ac637d535a50e (patch)
tree84a0fc87f76344a1c68164763e7f4e2c25ec7acd /src/partest
parent649d5bb3a59326ea8fb7790f6abc948951c73905 (diff)
downloadscala-63bd52781faa1192de1c87028d6ac637d535a50e.tar.gz
scala-63bd52781faa1192de1c87028d6ac637d535a50e.tar.bz2
scala-63bd52781faa1192de1c87028d6ac637d535a50e.zip
SI-7410 REPL uses improved tools.jar locator
The logic in partest for snooping around for tools.jar is moved to PathResolver, and ILoop uses it from there. If JAVA_HOME is toolless, check out java.home. The use case was that Ubuntu installs with `java` at version 6 and `javac` at version 7; it's easy to wind up with JAVA_HOME pointing at the version 6 JRE, as I discovered. It's confusing when that happens. In future, partest might run under 7 and fork tests under 6, but those permutations are downstream.
Diffstat (limited to 'src/partest')
-rw-r--r--src/partest/scala/tools/partest/nest/PathSettings.scala31
1 files changed, 2 insertions, 29 deletions
diff --git a/src/partest/scala/tools/partest/nest/PathSettings.scala b/src/partest/scala/tools/partest/nest/PathSettings.scala
index 8e454d8de8..030c515947 100644
--- a/src/partest/scala/tools/partest/nest/PathSettings.scala
+++ b/src/partest/scala/tools/partest/nest/PathSettings.scala
@@ -5,10 +5,8 @@
package scala.tools.partest
package nest
-import scala.tools.nsc.Properties.{ setProp, propOrEmpty, propOrNone, propOrElse }
import scala.tools.nsc.util.ClassPath
import scala.tools.nsc.io.{ Path, File, Directory }
-import scala.util.Properties.{ envOrElse, envOrNone, javaHome, jdkHome }
import Path._
object PathSettings {
@@ -80,34 +78,9 @@ object PathSettings {
lazy val diffUtils: File =
findJar(buildPackLibDir.files, "diffutils") getOrElse sys.error(s"No diffutils.jar found in '$buildPackLibDir'.")
- /** The platform-specific support jar.
- * Usually this is tools.jar in the jdk/lib directory of the platform distribution.
- * The file location is determined by probing the lib directory under JDK_HOME or JAVA_HOME,
- * if one of those environment variables is set, then the lib directory under java.home,
- * and finally the lib directory under the parent of java.home. Or, as a last resort,
- * search deeply under those locations (except for the parent of java.home, on the notion
- * that if this is not a canonical installation, then that search would have little
- * chance of succeeding).
+ /** The platform-specific support jar, `tools.jar`.
*/
- lazy val platformTools: Option[File] = {
- val jarName = "tools.jar"
- def jarPath(path: Path) = (path / "lib" / jarName).toFile
- def jarAt(path: Path) = {
- val f = jarPath(path)
- if (f.isFile) Some(f) else None
- }
- val jdkDir = {
- val d = Directory(jdkHome)
- if (d.isDirectory) Some(d) else None
- }
- def deeply(dir: Directory) = dir.deepFiles find (_.name == jarName)
-
- val home = envOrNone("JDK_HOME") orElse envOrNone("JAVA_HOME") map (p => Path(p))
- val install = Some(Path(javaHome))
-
- (home flatMap jarAt) orElse (install flatMap jarAt) orElse (install map (_.parent) flatMap jarAt) orElse
- (jdkDir flatMap deeply)
- }
+ lazy val platformTools: Option[File] = PathResolver.SupplementalLocations.platformTools
}
class PathSettings() {