Skip to content

Commit 14d7927

Browse files
committed
Move sources in dotty/runtime to non-bootstrapped lib
1 parent f334e3f commit 14d7927

File tree

116 files changed

+3
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

116 files changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,11 +156,13 @@ class BootstrappedOnlyCompilationTests extends ParallelTesting {
156156

157157
@Test def picklingWithCompiler: Unit = {
158158
val jvmBackendFilter = FileFilter.exclude(List("BTypes.scala", "Primitives.scala")) // TODO
159+
val runtimeFilter = FileFilter.exclude(List("Tuple.scala")) // TODO
159160
implicit val testGroup: TestGroup = TestGroup("testPicklingWithCompiler")
160161
aggregateTests(
161162
compileDir("compiler/src/dotty/tools", picklingWithCompilerOptions, recursive = false),
162163
compileDir("compiler/src/dotty/tools/dotc", picklingWithCompilerOptions, recursive = false),
163-
compileDir("library/src/dotty/runtime", picklingWithCompilerOptions),
164+
compileDir("library/src/scala/runtime/function", picklingWithCompilerOptions),
165+
compileFilesInDir("library/src/scala/runtime", picklingWithCompilerOptions, runtimeFilter),
164166
compileFilesInDir("compiler/src/dotty/tools/backend/jvm", picklingWithCompilerOptions, jvmBackendFilter),
165167
compileDir("compiler/src/dotty/tools/dotc/ast", picklingWithCompilerOptions),
166168
compileDir("compiler/src/dotty/tools/dotc/core", picklingWithCompilerOptions, recursive = false),

0 commit comments

Comments
 (0)