
scala.tools.partest.nest.RunnerSpec.scala Maven / Gradle / Ivy
package scala.tools.partest.nest
import language.postfixOps
import scala.tools.cmd.{ CommandLine, Interpolation, Meta, Reference, Spec }
trait RunnerSpec extends Spec with Meta.StdOpts with Interpolation {
def referenceSpec = RunnerSpec
def programInfo = Spec.Info(
"console-runner",
"Usage: ConsoleRunner [options] [test test ...]",
"scala.tools.partest.nest.ConsoleRunner")
heading("Test categories:")
val optPos = "pos" / "run compilation tests (success)" --?
val optNeg = "neg" / "run compilation tests (failure)" --?
val optRun = "run" / "run interpreter and backend tests" --?
val optJvm = "jvm" / "run JVM backend tests" --?
val optRes = "res" / "run resident compiler tests" --?
val optAnt = "ant" / "run Ant tests" --?
val optScalap = "scalap" / "run scalap tests" --?
val optSpecialized = "specialized" / "run specialization tests" --?
val optScalacheck = "scalacheck" / "run ScalaCheck tests" --?
val optInstrumented = "instrumented" / "run instrumented tests" --?
val optPresentation = "presentation" / "run presentation compiler tests" --?
heading("Test runner options:")
val optFailed = "failed" / "run only those tests that failed during the last run" --?
val optTimeout = "timeout" / "aborts the test suite after the given amount of time" --|
val optPack = "pack" / "pick compiler/reflect/library in build/pack, and run all tests" --?
val optGrep = "grep" / "run all tests whose source file contains the expression given to grep" --|
val optUpdateCheck = "update-check" / "instead of failing tests with output change, update checkfile (use with care!)" --?
val optBuildPath = "buildpath" / "set (relative) path to build jars (ex.: --buildpath build/pack)" --|
val optClassPath = "classpath" / "set (absolute) path to build classes" --|
val optSourcePath = "srcpath" / "set (relative) path to test source files (ex.: --srcpath pending)" --|
heading("Test output options:")
val optShowDiff = "show-diff" / "show diffs for failed tests" --?
val optVerbose = "verbose" / "show verbose progress information" --?
val optTerse = "terse" / "show terse progress information" --?
val optDebug = "debug" / "enable debugging output" --?
heading("Other options:")
val optVersion = "version" / "show Scala version and exit" --?
val optSelfTest = "self-test" / "run tests for partest itself" --?
val optHelp = "help" / "show this page and exit" --?
}
object RunnerSpec extends RunnerSpec with Reference {
type ThisCommandLine = CommandLine
def creator(args: List[String]): ThisCommandLine = new CommandLine(RunnerSpec, args)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy