summaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-12-06 12:24:42 -0800
committerPaul Phillips <paulp@improving.org>2012-12-06 12:45:09 -0800
commitc35751be33de590d8fbe669cbcb6f3de0d2c711f (patch)
tree663111a5053752abccb8aa8fefc7b03378079f36 /project
parent6ee2ce50a56237eed07bcc6b6198f97779208a02 (diff)
downloadscala-c35751be33de590d8fbe669cbcb6f3de0d2c711f.tar.gz
scala-c35751be33de590d8fbe669cbcb6f3de0d2c711f.tar.bz2
scala-c35751be33de590d8fbe669cbcb6f3de0d2c711f.zip
Misc touchup after purging msil/fjbg/genjvm.
Diffstat (limited to 'project')
-rw-r--r--project/Testing.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/project/Testing.scala b/project/Testing.scala
index de63a66164..5b4135a31a 100644
--- a/project/Testing.scala
+++ b/project/Testing.scala
@@ -17,7 +17,7 @@ trait Testing { self: ScalaBuild.type =>
autoScalaLibrary := false
)
lazy val continuationsTestsuiteSettings: Seq[Setting[_]] = testsuiteSettings ++ Seq(
- scalacOptions in Test <++= (exportedProducts in Compile in continuationsPlugin) map {
+ scalacOptions in Test <++= (exportedProducts in Compile in continuationsPlugin) map {
case Seq(cpDir) => Seq("-Xplugin-require:continuations", "-P:continuations:enable", "-Xplugin:"+cpDir.data.getAbsolutePath)
},
partestDirs <<= baseDirectory apply { bd =>
@@ -27,13 +27,13 @@ trait Testing { self: ScalaBuild.type =>
}
)
val testsuite = (
- Project("testsuite", file("."))
+ Project("testsuite", file("."))
settings (testsuiteSettings:_*)
- dependsOn (scalaLibrary, scalaCompiler, fjbg, partest, scalacheck)
+ dependsOn (scalaLibrary, scalaCompiler, partest, scalacheck)
)
val continuationsTestsuite = (
Project("continuations-testsuite", file("."))
- settings (continuationsTestsuiteSettings:_*)
+ settings (continuationsTestsuiteSettings:_*)
dependsOn (partest, scalaLibrary, scalaCompiler)
)