I want to measure the code coverage of integration tests using the JaCoCo and Sonar tools.

For that, I start my Tomcat 5.5 configured with the JaCoCo agent in order to get the dump file from JaCoCo.

Thus, I set the JAVA_OPTS for that:

set JAVA_OPTS=-Xrs -XX:MaxPermSize=256m -XX:PermSize=256m -XX:NewRatio=3 -Xms512m -Xmx1024m -XX:+UseParallelGC -javaagent:C:\dev\servers\jacoco-agent.jar=destfile=C:\dev\servers\jacoco.exec,append=true,includes=my.application.*

When I start Tomcat, the C:\dev\servers\jacoco.exec file is generated, but no data is filled.

Is there something I forgot in the configuration of my server?

Regards.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

As far as I remember - file would be populated during shutdown of Tomcat.

link|improve this answer
Ok, I will try that this week, and return to you. – romaintaz Oct 5 '11 at 6:37
feedback

Godin is correct. Tomcat must be stopped before a Jacoco report can be generated.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.