summaryrefslogtreecommitdiff
path: root/src/partest
diff options
context:
space:
mode:
Diffstat (limited to 'src/partest')
-rw-r--r--src/partest/scala/tools/partest/nest/FileManager.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/partest/scala/tools/partest/nest/FileManager.scala b/src/partest/scala/tools/partest/nest/FileManager.scala
index ee24c0b9c1..7bfa8c6e77 100644
--- a/src/partest/scala/tools/partest/nest/FileManager.scala
+++ b/src/partest/scala/tools/partest/nest/FileManager.scala
@@ -68,13 +68,14 @@ trait FileManager extends FileUtil {
else
(SFile(LATEST_LIB).parent.parent / "classes" / what).toAbsolute.path
}
+ def latestParserCBLib = relativeToLibrary("parser-combinators")
def latestXmlLib = relativeToLibrary("xml")
def latestScaladoc = relativeToLibrary("scaladoc")
def latestInteractive = relativeToLibrary("interactive")
def latestScalapFile = relativeToLibrary("scalap")
def latestPaths = List(
LATEST_LIB, LATEST_REFLECT, LATEST_COMP, LATEST_PARTEST, LATEST_ACTORS,
- latestXmlLib, latestScalapFile, latestScaladoc, latestInteractive
+ latestParserCBLib, latestXmlLib, latestScalapFile, latestScaladoc, latestInteractive
)
def latestFiles = latestPaths map (p => new java.io.File(p))
def latestUrls = latestFiles map (_.toURI.toURL)