From c7f52107cecc19aae6049193c3dcdb75038a2d83 Mon Sep 17 00:00:00 2001 From: Dale Wijnand Date: Tue, 26 Sep 2023 11:56:01 +0100 Subject: [PATCH] Exclude test file that fails on Scala.js + JVM 8 [Cherry-picked 5264c477dd02fd5289c6b8865afd8d536f78f3e0] --- tests/run/StringConcat.scala | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/run/StringConcat.scala b/tests/run/StringConcat.scala index d0a9c32e1016..96d97bf6e664 100644 --- a/tests/run/StringConcat.scala +++ b/tests/run/StringConcat.scala @@ -1,3 +1,9 @@ +// scalajs: --skip + +// Under JVM 8, +// this sometimes blows a StackOverflowError +// in PrepJSInterop + @main def Test() = { // This should generally obey 15.18.1. of the JLS (String Concatenation Operator +)