Skip to content

Commit

Permalink
Set test stack size to 4M.
Browse files Browse the repository at this point in the history
  • Loading branch information
robby-phd committed Mar 17, 2024
1 parent 7c71fad commit fa157e7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion bin/build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def compile(): Unit = {
def test(): Unit = {
compile()
println("Running shared tests ...")
Os.proc(ISZ(mill.string, "logika.jvm.tests")).at(home).console.runCheck()
Os.proc(ISZ(mill.string, "logika.jvm.tests")).env(ISZ("JAVA_OPTS" ~> "-Xss4M")).at(home).console.runCheck()
println()
}

Expand Down
1 change: 0 additions & 1 deletion jvm/src/test/scala/org/sireum/logika/LogikaRcTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ class LogikaRcTest extends SireumRcSpec {
name match {
case "opsem.sc" | "opsem-alt.sc" => Os.isMac && isInGithubAction
case "conformance-swap.sc" => isSimplified
case "list.sc" => isInGithubAction
case "strictpure.sc" => Os.isWin && isInGithubAction && !isSimplified
case _ => false
}
Expand Down

0 comments on commit fa157e7

Please sign in to comment.