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 0dea6c0 commit f8fb548Copy full SHA for f8fb548
compiler/test/dotty/tools/vulpix/ParallelTesting.scala
@@ -751,8 +751,11 @@ trait ParallelTesting extends RunnerOrchestration { self =>
751
case _ =>
752
}
753
case Failure(output) =>
754
- echo(s"Test '${testSource.title}' failed with output:")
755
- echo(output)
+ if output == "" then
+ echo(s"Test '${testSource.title}' failed with no output")
756
+ else
757
+ echo(s"Test '${testSource.title}' failed with output:")
758
+ echo(output)
759
failTestSource(testSource)
760
case Timeout =>
761
echo("failed because test " + testSource.title + " timed out")
tests/run/i17021.ext-java/Test.scala
@@ -1,3 +1,4 @@
1
+// scalajs: --skip
2
// Derives from run/i17021.defs
3
// but with a Java protected member
4
// and fixed calling code, that uses super
0 commit comments