File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
compiler/test/dotty/tools/vulpix
tests/run/i17021.ext-java Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -751,8 +751,11 @@ trait ParallelTesting extends RunnerOrchestration { self =>
751751 case _ =>
752752 }
753753 case Failure (output) =>
754- echo(s " Test ' ${testSource.title}' failed with output: " )
755- echo(output)
754+ if output == " " then
755+ echo(s " Test ' ${testSource.title}' failed with no output " )
756+ else
757+ echo(s " Test ' ${testSource.title}' failed with output: " )
758+ echo(output)
756759 failTestSource(testSource)
757760 case Timeout =>
758761 echo(" failed because test " + testSource.title + " timed out" )
Original file line number Diff line number Diff line change 1+ // scalajs: --skip
12// Derives from run/i17021.defs
23// but with a Java protected member
34// and fixed calling code, that uses super
You can’t perform that action at this time.
0 commit comments