File tree Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11package dotc
22
33import dotty .Jars
4+ import dotty .LegacyTests
45import dotty .tools .dotc .CompilerTest
56import dotty .tools .StdLibSources
67import org .junit .experimental .categories .Category
Original file line number Diff line number Diff line change 1+ package dotty
2+
3+ /** SlowTest category for JUnit */
4+ trait SlowTests
5+
6+ /** Legacy tests category for JUnit */
7+ trait LegacyTests
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -468,17 +468,17 @@ object Build {
468468
469469 test in Test := {
470470 // Exclude legacy tests by default
471- (testOnly in Test ).toTask(" -- --exclude-categories=dotc .LegacyTests,dotty.tools.dotc .SlowTests" ).value
471+ (testOnly in Test ).toTask(" -- --exclude-categories=dotty .LegacyTests,dotty.SlowTests" ).value
472472 },
473473
474474 testAll in Test := {
475475 // Exclude legacy tests by default
476- (testOnly in Test ).toTask(" -- --exclude-categories=dotc .LegacyTests" ).value
476+ (testOnly in Test ).toTask(" -- --exclude-categories=dotty .LegacyTests" ).value
477477 },
478478
479479 vulpix := Def .inputTaskDyn {
480480 val args : Seq [String ] = spaceDelimited(" <arg>" ).parsed
481- val cmd = " dotty.tools.dotc.CompilationTests -- --exclude-categories=dotty.tools.dotc. SlowTests" + {
481+ val cmd = " dotty.tools.dotc.CompilationTests -- --exclude-categories=dotty.SlowTests" + {
482482 if (args.nonEmpty) " -Ddotty.tests.filter=" + args.mkString(" " )
483483 else " "
484484 }
You can’t perform that action at this time.
0 commit comments