@@ -37,11 +37,11 @@ class tests extends CompilerTest {
37
37
val negDir = testsDir + " neg/"
38
38
val newDir = testsDir + " new/"
39
39
40
- val dottyDir = " ./src/dotty /"
41
- val toolsDir = dottyDir + " tools /"
42
- val dotcDir = toolsDir + " dotc /"
43
- val coreDir = dotcDir + " core /"
44
-
40
+ val sourceDir = " ./src/"
41
+ val dottyDir = sourceDir + " dotty /"
42
+ val toolsDir = dottyDir + " tools /"
43
+ val dotcDir = toolsDir + " dotc /"
44
+ val coreDir = dotcDir + " core/ "
45
45
@ Test def pickle_pickleOK = compileDir(testsDir, " pickling" , testPickling)
46
46
@ Test def pickle_pickling = compileDir(coreDir, " pickling" , testPickling)
47
47
@ Test def pickle_ast = compileDir(dotcDir, " ast" , testPickling)
@@ -135,8 +135,8 @@ class tests extends CompilerTest {
135
135
@ Test def neg_instantiateAbstract = compileFile(negDir, " instantiateAbstract" , xerrors = 8 )
136
136
@ Test def neg_selfInheritance = compileFile(negDir, " selfInheritance" , xerrors = 5 )
137
137
138
- @ Test def dotc = compileDir(toolsDir, " dotc" , " -deep" :: allowDeepSubtypes ++ twice) // note the -deep argument
139
138
139
+ @ Test def dotty = compileDir(sourceDir, " " , " -deep" :: allowDeepSubtypes ++ twice) // note the -deep argument
140
140
@ Test def dotc_ast = compileDir(dotcDir, " ast" )
141
141
@ Test def dotc_config = compileDir(dotcDir, " config" )
142
142
@ Test def dotc_core = compileDir(dotcDir, " core" )(" -Yno-double-bindings" :: allowDeepSubtypes)// twice omitted to make tests run faster
0 commit comments