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