You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After the instrumentation, I am getting GC exception. I have both "-Xms2048M" and "-Xmx2048M" allocate 2GB of memory which I think is enough. Do anyone have any idea how to get around this?
[scoverage]: Instrumentation completed [50838 statements]
[scoverage]: Written instrumentation file [/Users/mayumi.liyanage/wm_browse/target/scala-2.10/scoverage-data/scoverage.coverage.xml]
[scoverage]: Writing measurements data to [/Users/mayumi.liyanage/wm_browse/target/scala-2.10/scoverage-data]
java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: GC overhead limit exceeded
at java.util.concurrent.FutureTask.report(FutureTask.java:122)
at java.util.concurrent.FutureTask.get(FutureTask.java:188)
at sbt.ConcurrentRestrictions$$anon$4.take(ConcurrentRestrictions.scala:196)
.........
Thanks
The text was updated successfully, but these errors were encountered:
FWIW - I've been using sbt-scoverage without any problem at all with a Play Framework-based project.
Never had any memory issues: as @sksamuel pointed out, you should set your JVM to run with more memory (but I'm using JDK 8 with the default settings and it works just fine).
After the instrumentation, I am getting GC exception. I have both "-Xms2048M" and "-Xmx2048M" allocate 2GB of memory which I think is enough. Do anyone have any idea how to get around this?
[scoverage]: Instrumentation completed [50838 statements]
[scoverage]: Written instrumentation file [/Users/mayumi.liyanage/wm_browse/target/scala-2.10/scoverage-data/scoverage.coverage.xml]
[scoverage]: Writing measurements data to [/Users/mayumi.liyanage/wm_browse/target/scala-2.10/scoverage-data]
java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: GC overhead limit exceeded
at java.util.concurrent.FutureTask.report(FutureTask.java:122)
at java.util.concurrent.FutureTask.get(FutureTask.java:188)
at sbt.ConcurrentRestrictions$$anon$4.take(ConcurrentRestrictions.scala:196)
.........
Thanks
The text was updated successfully, but these errors were encountered: