@@ -40,8 +40,8 @@ class CompilationTests extends ParallelTesting {
40
40
compileList(" compileStdLib" , StdLibSources .whitelisted, scala2Mode.and(" -migration" , " -Yno-inline" )) +
41
41
compileDir(" ../compiler/src/dotty/tools/dotc/ast" , defaultOptions) +
42
42
compileDir(" ../compiler/src/dotty/tools/dotc/config" , defaultOptions) +
43
- compileDir(" ../compiler/src/dotty/tools/dotc/core" , allowDeepSubtypes ) +
44
- compileDir(" ../compiler/src/dotty/tools/dotc/transform" , allowDeepSubtypes ) +
43
+ compileDir(" ../compiler/src/dotty/tools/dotc/core" , defaultOptions ) +
44
+ compileDir(" ../compiler/src/dotty/tools/dotc/transform" , defaultOptions ) +
45
45
compileDir(" ../compiler/src/dotty/tools/dotc/parsing" , defaultOptions) +
46
46
compileDir(" ../compiler/src/dotty/tools/dotc/printing" , defaultOptions) +
47
47
compileDir(" ../compiler/src/dotty/tools/dotc/reporting" , defaultOptions) +
@@ -51,7 +51,6 @@ class CompilationTests extends ParallelTesting {
51
51
compileDir(" ../compiler/src/dotty/tools/dotc/core" , TestFlags (classPath, noCheckOptions)) +
52
52
compileFile(" ../tests/pos/nullarify.scala" , defaultOptions.and(" -Ycheck:nullarify" )) +
53
53
compileFile(" ../tests/pos-scala2/rewrites.scala" , scala2Mode.and(" -rewrite" )).copyToTarget() +
54
- compileFile(" ../tests/pos-special/t8146a.scala" , allowDeepSubtypes) +
55
54
compileFile(" ../tests/pos-special/utf8encoded.scala" , explicitUTF8) +
56
55
compileFile(" ../tests/pos-special/utf16encoded.scala" , explicitUTF16) +
57
56
compileList(
@@ -198,8 +197,8 @@ class CompilationTests extends ParallelTesting {
198
197
// lower level of concurrency as to not kill their running VMs
199
198
200
199
@ Test def testPickling : Unit = {
201
- compileDir(" ../compiler/src/dotty/tools" , picklingOptionsAllowDeepSubTypes ) +
202
- compileDir(" ../compiler/src/dotty/tools/dotc" , picklingOptionsAllowDeepSubTypes ) +
200
+ compileDir(" ../compiler/src/dotty/tools" , picklingOptions ) +
201
+ compileDir(" ../compiler/src/dotty/tools/dotc" , picklingOptions ) +
203
202
compileFilesInDir(" ../tests/new" , picklingOptions) +
204
203
compileFilesInDir(" ../tests/pickling" , picklingOptions) +
205
204
compileDir(" ../library/src/dotty/runtime" , picklingOptions) +
@@ -211,7 +210,7 @@ class CompilationTests extends ParallelTesting {
211
210
compileDir(" ../compiler/src/dotty/tools/dotc/printing" , picklingOptions) +
212
211
compileDir(" ../compiler/src/dotty/tools/repl" , picklingOptions) +
213
212
compileDir(" ../compiler/src/dotty/tools/dotc/rewrite" , picklingOptions) +
214
- compileDir(" ../compiler/src/dotty/tools/dotc/transform" , picklingOptionsAllowDeepSubTypes ) +
213
+ compileDir(" ../compiler/src/dotty/tools/dotc/transform" , picklingOptions ) +
215
214
compileDir(" ../compiler/src/dotty/tools/dotc/typer" , picklingOptions) +
216
215
compileDir(" ../compiler/src/dotty/tools/dotc/util" , picklingOptions) +
217
216
compileDir(" ../compiler/src/dotty/tools/io" , picklingOptions) +
@@ -237,7 +236,7 @@ class CompilationTests extends ParallelTesting {
237
236
238
237
def lib =
239
238
compileDir(" ../library/src" ,
240
- allowDeepSubtypes .and(" -Ycheck-reentrant" , " -strict" , " -priorityclasspath" , defaultOutputDir))
239
+ defaultOptions .and(" -Ycheck-reentrant" , " -strict" , " -priorityclasspath" , defaultOutputDir))
241
240
242
241
val compilerDir = Paths .get(" ../compiler/src" )
243
242
val compilerSources = sources(Files .walk(compilerDir))
0 commit comments