File tree 1 file changed +5
-2
lines changed
compiler/test/dotty/tools/vulpix
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -156,6 +156,11 @@ trait ParallelTesting extends RunnerOrchestration { self =>
156
156
}
157
157
}
158
158
}
159
+
160
+ final override def toString : String = sourceFiles match {
161
+ case Array (f) => f.getPath
162
+ case _ => outDir.getPath.stripPrefix(defaultOutputDir).stripPrefix(name).stripPrefix(" /" )
163
+ }
159
164
}
160
165
161
166
/** A group of files that may all be compiled together, with the same flags
@@ -170,8 +175,6 @@ trait ParallelTesting extends RunnerOrchestration { self =>
170
175
decompilation : Boolean = false
171
176
) extends TestSource {
172
177
def sourceFiles : Array [JFile ] = files.filter(isSourceFile)
173
-
174
- override def toString () = sourceFiles match { case Array (f) => f.getPath case _ => outDir.getPath }
175
178
}
176
179
177
180
/** A test source whose files will be compiled separately according to their
You can’t perform that action at this time.
0 commit comments