@@ -281,11 +281,11 @@ class CompilationTests extends ParallelTesting {
281
281
sources(Files .list(backendJvmDir), excludedFiles = backendJvmExcluded)
282
282
283
283
val dotty1 = compileList(" dotty" , compilerSources ++ backendSources ++ backendJvmSources, opt)(dotty1Group)
284
- val dotty2 = compileList(" dotty" , compilerSources ++ backendSources ++ backendJvmSources, opt)(dotty2Group)
284
+ // val dotty2 = compileList("dotty", compilerSources ++ backendSources ++ backendJvmSources, opt)(dotty2Group)
285
285
286
286
val tests = {
287
287
lib.keepOutput :: dotty1.keepOutput :: {
288
- dotty2 +
288
+ // dotty2 +
289
289
compileShallowFilesInDir(" compiler/src/dotty/tools" , opt) +
290
290
compileShallowFilesInDir(" compiler/src/dotty/tools/dotc" , opt) +
291
291
compileShallowFilesInDir(" compiler/src/dotty/tools/dotc/ast" , opt) +
@@ -302,10 +302,10 @@ class CompilationTests extends ParallelTesting {
302
302
}.keepOutput :: Nil
303
303
}.map(_.checkCompile())
304
304
305
- assert(new java.io.File (s " out/ $dotty1Group/dotty/ " ).exists)
306
- assert(new java.io.File (s " out/ $dotty2Group/dotty/ " ).exists)
307
- assert(new java.io.File (s " out/ $libGroup/src/ " ).exists)
308
- compileList(" idempotency" , List (" tests/idempotency/BootstrapChecker.scala" , " tests/idempotency/IdempotencyCheck.scala" ), defaultOptions).checkRuns()
305
+ // assert(new java.io.File(s"out/$dotty1Group/dotty/").exists)
306
+ // assert(new java.io.File(s"out/$dotty2Group/dotty/").exists)
307
+ // assert(new java.io.File(s"out/$libGroup/src/").exists)
308
+ // compileList("idempotency", List("tests/idempotency/BootstrapChecker.scala", "tests/idempotency/IdempotencyCheck.scala"), defaultOptions).checkRuns()
309
309
310
310
tests.foreach(_.delete())
311
311
}
0 commit comments