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

This commit is contained in:
Josh Suereth 2014-11-05 09:24:42 -05:00
parent 067479f59e
commit fa57346a66
1 changed files with 1 additions and 1 deletions

View File

@ -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.")