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 =>
751
751
case _ =>
752
752
}
753
753
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)
756
759
failTestSource(testSource)
757
760
case Timeout =>
758
761
echo(" failed because test " + testSource.title + " timed out" )
Original file line number Diff line number Diff line change
1
+ // scalajs: --skip
1
2
// Derives from run/i17021.defs
2
3
// but with a Java protected member
3
4
// and fixed calling code, that uses super
You can’t perform that action at this time.
0 commit comments