Skip to content

Commit c6b0f28

Browse files
Exclude 2 2 backend files from pickling test
1 parent ff15f04 commit c6b0f28

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,12 @@ class BootstrappedOnlyCompilationTests extends ParallelTesting {
9191
// lower level of concurrency as to not kill their running VMs
9292

9393
@Test def picklingWithCompiler: Unit = {
94+
val jvmBackendFilter = FileFilter.exclude(List("BTypes.scala", "Primitives.scala")) // TODO
9495
implicit val testGroup: TestGroup = TestGroup("testPicklingWithCompiler")
9596
compileDir("compiler/src/dotty/tools", picklingWithCompilerOptions, recursive = false) +
9697
compileDir("compiler/src/dotty/tools/dotc", picklingWithCompilerOptions, recursive = false) +
9798
compileDir("library/src/dotty/runtime", picklingWithCompilerOptions) +
98-
compileDir("compiler/src/dotty/tools/backend/jvm", picklingWithCompilerOptions) +
99+
compileFilesInDir("compiler/src/dotty/tools/backend/jvm", picklingWithCompilerOptions, jvmBackendFilter) +
99100
compileDir("compiler/src/dotty/tools/dotc/ast", picklingWithCompilerOptions) +
100101
compileDir("compiler/src/dotty/tools/dotc/core", picklingWithCompilerOptions, recursive = false) +
101102
compileDir("compiler/src/dotty/tools/dotc/config", picklingWithCompilerOptions) +

0 commit comments

Comments
 (0)