Skip to content

Commit 6d83f6d

Browse files
authored
Merge pull request #10718 from dotty-staging/move-dotty/runtime-to-non-boostrapped-lib
Move sources in dotty/runtime to non-bootstrapped lib
2 parents 36424e2 + 14d7927 commit 6d83f6d

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

+3-1
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)