Skip to content

Commit 1f25a04

Browse files
committed
Rename vulpix task to testCompilation for better completion
1 parent 0f97d1c commit 1f25a04

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

project/Build.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ object Build {
7272
lazy val packageAll =
7373
taskKey[Map[String, String]]("Package everything needed to run tests")
7474

75+
// Run tests with filter through vulpix test suite
76+
lazy val testCompilation = inputKey[Unit]("runs integration test with the supplied filter")
77+
7578
// Spawns a repl with the correct classpath
7679
lazy val repl = inputKey[Unit]("run the REPL with correct classpath")
7780

78-
// Run tests with filter through vulpix test suite
79-
lazy val vulpix = inputKey[Unit]("runs integration test with the supplied filter")
80-
8181
// Used to compile files similar to ./bin/dotc script
8282
lazy val dotc =
8383
inputKey[Unit]("run the compiler using the correct classpath, or the user supplied classpath")
@@ -556,7 +556,7 @@ object Build {
556556
jars ::: tuning ::: agentOptions ::: ci_build ::: path.toList
557557
},
558558

559-
vulpix := Def.inputTaskDyn {
559+
testCompilation := Def.inputTaskDyn {
560560
val args: Seq[String] = spaceDelimited("<arg>").parsed
561561
val cmd = " dotty.tools.dotc.CompilationTests -- --exclude-categories=dotty.SlowTests" + {
562562
if (args.nonEmpty) " -Ddotty.tests.filter=" + args.mkString(" ")

0 commit comments

Comments
 (0)