File tree 1 file changed +3
-3
lines changed
compiler/test/dotty/tools/vulpix
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -408,7 +408,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
408
408
val pathStr = targetDir.toPath.relativize(f.toPath).toString.replace('/' , '.' )
409
409
pathStr.stripSuffix(" .tasty" ).stripSuffix(" .hasTasty" )
410
410
}
411
- val classes = flattenFiles(targetDir).filter(isHasTastyFile ).map(tastyFileToClassName)
411
+ val classes = flattenFiles(targetDir).filter(isTastyFile ).map(tastyFileToClassName)
412
412
413
413
val reporter =
414
414
TestReporter .reporter(realStdout, logLevel =
@@ -437,7 +437,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
437
437
438
438
def hasTastyFileToClassName (f : JFile ): String =
439
439
targetDir0.toPath.relativize(f.toPath).toString.stripSuffix(" .hasTasty" ).stripSuffix(" .tasty" ).replace('/' , '.' )
440
- val classes = flattenFiles(targetDir0).filter(isHasTastyFile ).map(hasTastyFileToClassName).sorted
440
+ val classes = flattenFiles(targetDir0).filter(isTastyFile ).map(hasTastyFileToClassName).sorted
441
441
442
442
val reporter =
443
443
TestReporter .reporter(realStdout, logLevel =
@@ -1370,6 +1370,6 @@ object ParallelTesting {
1370
1370
name.endsWith(" .scala" ) || name.endsWith(" .java" )
1371
1371
}
1372
1372
1373
- def isHasTastyFile (f : JFile ): Boolean =
1373
+ def isTastyFile (f : JFile ): Boolean =
1374
1374
f.getName.endsWith(" .hasTasty" ) || f.getName.endsWith(" .tasty" )
1375
1375
}
You can’t perform that action at this time.
0 commit comments