@@ -100,6 +100,7 @@ class tests extends CompilerTest {
100
100
101
101
@ Test def pos_all = compileFiles(posDir) // twice omitted to make tests run faster
102
102
103
+ @ Test def pos_sets = compileFile(posSpecialDir, " sets" )(allowDeepSubtypes)
103
104
@ Test def pos_t2613 = compileFile(posSpecialDir, " t2613" )(allowDeepSubtypes)
104
105
@ Test def pos_i871 = compileFile(posSpecialDir, " i871" , scala2mode)
105
106
@ Test def pos_variancesConstr = compileFile(posSpecialDir, " variances-constr" , scala2mode)
@@ -182,7 +183,7 @@ class tests extends CompilerTest {
182
183
.toList
183
184
184
185
@ Test def compileStdLib = compileList(" compileStdLib" , stdlibFiles, " -migration" :: scala2mode)
185
- @ Test def dotty = compileDir(dottyDir, " ." , " -deep" :: " -Ycheck-reentrant" :: allowDeepSubtypes) // note the -deep argument
186
+ @ Test def dotty = compileDir(dottyDir, " ." , List ( " -deep" , " -Ycheck-reentrant" ))( allowDeepSubtypes) // note the -deep argument
186
187
187
188
@ Test def dotc_ast = compileDir(dotcDir, " ast" )
188
189
@ Test def dotc_config = compileDir(dotcDir, " config" )
@@ -191,7 +192,7 @@ class tests extends CompilerTest {
191
192
// This directory doesn't exist anymore
192
193
// @Test def dotc_core_pickling = compileDir(coreDir, "pickling")(allowDeepSubtypes)// twice omitted to make tests run faster
193
194
194
- @ Test def dotc_transform = compileDir(dotcDir, " transform" )// twice omitted to make tests run faster
195
+ @ Test def dotc_transform = compileDir(dotcDir, " transform" )(allowDeepSubtypes) // twice omitted to make tests run faster
195
196
196
197
@ Test def dotc_parsing = compileDir(dotcDir, " parsing" ) // twice omitted to make tests run faster
197
198
0 commit comments