JaCoCo agent path problem with multi-module project

Hi,

JaCoCo agent path is invalid in the jvm args with multi-module project.:

-javaagent:build/tmp/expandedArchives/org.jacoco.agent-0.6.2.201302030002.jar_q2a0mtv8q5rq9ajosjjoali9o/jacocoagent.jar…

Paths need to use the $projectDir as root of the relative path, or did I miss some configuration here?

-javaagent:$projectDir/build/tmp/expandedArchives/org.jacoco.agent-0.6.2.201302030002.jar_q2a0mtv8q5rq9ajosjjoali9o/jacocoagent.jar…

Peter

1 Like

Hi,

Any chance you could put together a sample project with the problem?

Hi,

I created a small sample project, gradle 1.6 was used.

https://www.dropbox.com/s/xq0ti8u9waqm9ml/jacoco-sample.zip

I raised GRADLE-2859 for this. I found the problem (details on linked issue to that issue).

As a workaround, you need to do this for the test task:

systemProperties[‘user.dir’] = workingDir

Thanks for the solution!

I tried flowing this assignment down to all test tasks, which would include intTest-type tasks, in my multiproject build with

allprojects {

tasks.withType(Test) {

systemProperties[‘user.dir’] = workingDir

} }

but the jacocoagent problem persists.