Skip to content

Commit e870f7e

Browse files
committed
WIP disable some tests
1 parent 01f61ce commit e870f7e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

compiler/test/dotty/tools/dotc/CompilationTests.scala

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -280,11 +280,11 @@ class CompilationTests extends ParallelTesting {
280280
sources(Files.list(backendJvmDir), excludedFiles = backendJvmExcluded)
281281

282282
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)
284284

285285
val tests = {
286286
lib.keepOutput :: dotty1.keepOutput :: {
287-
dotty2 +
287+
// dotty2 +
288288
compileShallowFilesInDir("compiler/src/dotty/tools", opt) +
289289
compileShallowFilesInDir("compiler/src/dotty/tools/dotc", opt) +
290290
compileShallowFilesInDir("compiler/src/dotty/tools/dotc/ast", opt) +
@@ -301,10 +301,10 @@ class CompilationTests extends ParallelTesting {
301301
}.keepOutput :: Nil
302302
}.map(_.checkCompile())
303303

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()
308308

309309
tests.foreach(_.delete())
310310
}

compiler/test/dotty/tools/dotc/FromTastyTests.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ class FromTastyTests extends ParallelTesting {
3636

3737
// MatchError in SymDenotation.sourceModule on a ThisType
3838
"t3612.scala",
39+
"annot-bootstrap.scala",
3940
),
4041
recompilationBlacklist = Set(
4142
"simpleCaseObject",
42-
"annot-bootstrap.scala",
4343
)
4444
).checkCompile()
4545
}

0 commit comments

Comments
 (0)