File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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(" " )
You can’t perform that action at this time.
0 commit comments