File tree Expand file tree Collapse file tree 1 file changed +5
-10
lines changed
compiler/test/dotty/tools/vulpix Expand file tree Collapse file tree 1 file changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -714,16 +714,11 @@ trait ParallelTesting extends RunnerOrchestration { self =>
714
714
def linesMatch =
715
715
(outputLines, checkLines).zipped.forall(_ == _)
716
716
717
- if (outputLines.length != checkLines.length || ! linesMatch) {
718
- // Print diff to files and summary:
719
- val diff = DiffUtil .mkColoredLineDiff(checkLines :+ DiffUtil .EOF , outputLines :+ DiffUtil .EOF )
720
-
721
- Some (
722
- s """ |Output from ' $sourceTitle' did not match check file.
723
- |Diff (expected on the left, actual right):
724
- | """ .stripMargin + diff + " \n " )
725
- } else None
726
-
717
+ if (outputLines.length != checkLines.length || ! linesMatch) Some (
718
+ s """ |Output from ' $sourceTitle' did not match check file. Actual output:
719
+ | ${outputLines.mkString(EOL )}
720
+ | """ .stripMargin + " \n " )
721
+ else None
727
722
}
728
723
729
724
/** The `CompilationTest` is the main interface to `ParallelTesting`, it
You can’t perform that action at this time.
0 commit comments