File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -72,12 +72,12 @@ object Build {
72
72
lazy val packageAll =
73
73
taskKey[Map [String , String ]](" Package everything needed to run tests" )
74
74
75
+ // Run tests with filter through vulpix test suite
76
+ lazy val testCompilation = inputKey[Unit ](" runs integration test with the supplied filter" )
77
+
75
78
// Spawns a repl with the correct classpath
76
79
lazy val repl = inputKey[Unit ](" run the REPL with correct classpath" )
77
80
78
- // Run tests with filter through vulpix test suite
79
- lazy val vulpix = inputKey[Unit ](" runs integration test with the supplied filter" )
80
-
81
81
// Used to compile files similar to ./bin/dotc script
82
82
lazy val dotc =
83
83
inputKey[Unit ](" run the compiler using the correct classpath, or the user supplied classpath" )
@@ -556,7 +556,7 @@ object Build {
556
556
jars ::: tuning ::: agentOptions ::: ci_build ::: path.toList
557
557
},
558
558
559
- vulpix := Def .inputTaskDyn {
559
+ testCompilation := Def .inputTaskDyn {
560
560
val args : Seq [String ] = spaceDelimited(" <arg>" ).parsed
561
561
val cmd = " dotty.tools.dotc.CompilationTests -- --exclude-categories=dotty.SlowTests" + {
562
562
if (args.nonEmpty) " -Ddotty.tests.filter=" + args.mkString(" " )
You can’t perform that action at this time.
0 commit comments