mirror of
https://github.com/sbt/sbt.git
synced 2026-09-07 19:05:53 +02:00
Fix scripted test to understand new compile/compileIncremental task switch.
This commit is contained in:
@@ -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.")
|
||||
|
||||
Reference in New Issue
Block a user