@@ -798,7 +798,7 @@ lazy val tastytest = configureAsSubproject(project)
798
798
.settings(
799
799
name := " scala-tastytest" ,
800
800
description := " Scala TASTy Integration Testing Tool" ,
801
- libraryDependencies ++= List (/* testInterfaceDep,*/ diffUtilsDep, DottySupport .dottyCompiler),
801
+ libraryDependencies ++= List (/* testInterfaceDep,*/ diffUtilsDep, TastySupport .dottyCompiler),
802
802
pomDependencyExclusions ++= List ((organization.value, " scala-repl-frontend" ), (organization.value, " scala-compiler-doc" )),
803
803
fixPom(
804
804
" /project/name" -> <name >Scala TASTyTest </name >,
@@ -807,17 +807,6 @@ lazy val tastytest = configureAsSubproject(project)
807
807
)
808
808
)
809
809
810
- // ??? TODO [tasty]: WTF is this?
811
- lazy val scalacheckLib = project.in(file(" src" ) / " scalacheck" )
812
- .dependsOn(library)
813
- .settings(commonSettings)
814
- .settings(disableDocs)
815
- .settings(skip in publish := true )
816
- .settings(
817
- name := " scalacheck-lib" ,
818
- libraryDependencies += testInterfaceDep
819
- )
820
-
821
810
// An instrumented version of BoxesRunTime and ScalaRunTime for partest's "specialized" test category
822
811
lazy val specLib = project.in(file(" test" ) / " instrumented" )
823
812
.dependsOn(library, reflect, compiler)
@@ -1222,29 +1211,29 @@ lazy val root: Project = (project in file("."))
1222
1211
1223
1212
testAll := {
1224
1213
val results = ScriptCommands .sequence[(Result [Unit ], String )](List (
1214
+ SavedLogs .clearSavedLogs.result map (_ -> " clearSavedLogs" ),
1215
+ (testOnly in Test in junit).toTask(" -- +v" ).result map (_ -> " junit/test" ),
1216
+ (Keys .test in Test in scalacheck).result map (_ -> " scalacheck/test" ),
1217
+ partestDesc(" run" ),
1218
+ partestDesc(" pos neg jvm" ),
1219
+ partestDesc(" res scalap specialized" ),
1220
+ partestDesc(" instrumented presentation" ),
1221
+ partestDesc(" --srcpath scaladoc" ),
1222
+ partestDesc(" --srcpath macro-annot" ),
1225
1223
(Keys .test in Test in tasty).result map (_ -> " tasty/test" ),
1226
- // SavedLogs.clearSavedLogs.result map (_ -> "clearSavedLogs"),
1227
- // (testOnly in Test in junit).toTask(" -- +v").result map (_ -> "junit/test"),
1228
- // (Keys.test in Test in scalacheck).result map (_ -> "scalacheck/test"),
1229
- // partestDesc("run"),
1230
- // partestDesc("pos neg jvm"),
1231
- // partestDesc("res scalap specialized"),
1232
- // partestDesc("instrumented presentation"),
1233
- // partestDesc("--srcpath scaladoc"),
1234
- // partestDesc("--srcpath macro-annot"),
1235
- // (Keys.test in Test in osgiTestFelix).result map (_ -> "osgiTestFelix/test"),
1236
- // (Keys.test in Test in osgiTestEclipse).result map (_ -> "osgiTestEclipse/test"),
1237
- // (mimaReportBinaryIssues in library).result map (_ -> "library/mimaReportBinaryIssues"),
1238
- // (mimaReportBinaryIssues in reflect).result map (_ -> "reflect/mimaReportBinaryIssues"),
1239
- // testJDeps.result map (_ -> "testJDeps"),
1240
- // testJarSize.result map (_ -> "testJarSize"),
1241
- // (compile in Compile in bench).map(_ => ()).result map (_ -> "bench/compile"),
1242
- // Def.task(()).dependsOn( // Run these in parallel:
1243
- // doc in Compile in library,
1244
- // doc in Compile in reflect,
1245
- // doc in Compile in compiler,
1246
- // doc in Compile in scalap
1247
- // ).result map (_ -> "doc")
1224
+ (Keys .test in Test in osgiTestFelix).result map (_ -> " osgiTestFelix/test" ),
1225
+ (Keys .test in Test in osgiTestEclipse).result map (_ -> " osgiTestEclipse/test" ),
1226
+ (mimaReportBinaryIssues in library).result map (_ -> " library/mimaReportBinaryIssues" ),
1227
+ (mimaReportBinaryIssues in reflect).result map (_ -> " reflect/mimaReportBinaryIssues" ),
1228
+ testJDeps.result map (_ -> " testJDeps" ),
1229
+ testJarSize.result map (_ -> " testJarSize" ),
1230
+ (compile in Compile in bench).map(_ => ()).result map (_ -> " bench/compile" ),
1231
+ Def .task(()).dependsOn( // Run these in parallel:
1232
+ doc in Compile in library,
1233
+ doc in Compile in reflect,
1234
+ doc in Compile in compiler,
1235
+ doc in Compile in scalap
1236
+ ).result map (_ -> " doc" )
1248
1237
)).value
1249
1238
val log = streams.value.log
1250
1239
val failed = results.collect { case (Inc (i), d) => (i, d) }
0 commit comments