Skip to content

Commit ad9129a

Browse files
authored
Merge pull request scala#5365 from szeiger/wip/junit-stack-size
Decrease stack size for JUnit tests to 1M (same as the old ant build)
2 parents 66430e0 + fe438be commit ad9129a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ lazy val junit = project.in(file("test") / "junit")
556556
.settings(disablePublishing: _*)
557557
.settings(
558558
fork in Test := true,
559-
javaOptions in Test += "-Xss5M",
559+
javaOptions in Test += "-Xss1M",
560560
libraryDependencies ++= Seq(junitDep, junitInterfaceDep, jolDep),
561561
testOptions += Tests.Argument(TestFrameworks.JUnit, "-a", "-v"),
562562
testFrameworks -= new TestFramework("org.scalacheck.ScalaCheckFramework"),

0 commit comments

Comments
 (0)