Fix scripted test to understand new compile/compileIncremental task switch.

This commit is contained in:
Josh Suereth
2014-12-01 13:35:51 -05:00
parent 067479f59e
commit fa57346a66
@@ -4,7 +4,7 @@ libraryDependencies += "org.scala-sbt" % "sbt" % sbtVersion.value
lazy val expectErrorNotCrash = taskKey[Unit]("Ensures that sbt properly set types on Trees so that the compiler doesn't crash on a bad reference to .value, but gives a proper error instead.")
expectErrorNotCrash := {
val fail = (compile in Compile).failure.value
val fail = (compileIncremental in Compile).failure.value
fail.directCause match {
case Some(x: xsbti.CompileFailed) => ()
case _ => sys.error("Compiler crashed instead of providing a compile-time-only exception.")