We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca67e4d commit 326fc3cCopy full SHA for 326fc3c
compiler/test/dotty/tools/vulpix/ParallelTesting.scala
@@ -504,11 +504,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
504
tastyOutput.mkdir()
505
val flags = flags0 and ("-d", tastyOutput.getPath) and "-from-tasty"
506
507
- def tastyFileToClassName(f: JFile): String = {
508
- val pathStr = targetDir.toPath.relativize(f.toPath).toString.replace(JFile.separatorChar, '.')
509
- pathStr.stripSuffix(".tasty").stripSuffix(".hasTasty")
510
- }
511
- val classes = flattenFiles(targetDir).filter(isTastyFile).map(tastyFileToClassName)
+ val classes = flattenFiles(targetDir).filter(isTastyFile).map(_.toString)
512
513
val reporter =
514
TestReporter.reporter(realStdout, logLevel =
0 commit comments