Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
.travis.yml | 24-Aug-2016 | 235 | |
Android.mk | 24-Aug-2016 | 2.7K | |
asm-debug-all-5.0.1.jar | 24-Aug-2016 | 371.4K | |
config.mk | 24-Aug-2016 | 654 | |
jacoco/ | 24-Aug-2016 | ||
jacoco-maven-plugin/ | 24-Aug-2016 | ||
jacoco-maven-plugin.test/ | 24-Aug-2016 | ||
LICENSE.md | 24-Aug-2016 | 681 | |
MODULE_LICENSE_EPL | 24-Aug-2016 | 0 | |
NOTICE | 24-Aug-2016 | 681 | |
org.jacoco.agent/ | 24-Aug-2016 | ||
org.jacoco.agent.rt/ | 24-Aug-2016 | ||
org.jacoco.agent.rt.test/ | 24-Aug-2016 | ||
org.jacoco.agent.test/ | 24-Aug-2016 | ||
org.jacoco.ant/ | 24-Aug-2016 | ||
org.jacoco.ant.test/ | 24-Aug-2016 | ||
org.jacoco.build/ | 24-Aug-2016 | ||
org.jacoco.core/ | 24-Aug-2016 | ||
org.jacoco.core.test/ | 24-Aug-2016 | ||
org.jacoco.doc/ | 24-Aug-2016 | ||
org.jacoco.examples/ | 24-Aug-2016 | ||
org.jacoco.examples.test/ | 24-Aug-2016 | ||
org.jacoco.report/ | 24-Aug-2016 | ||
org.jacoco.report.test/ | 24-Aug-2016 | ||
org.jacoco.tests/ | 24-Aug-2016 | ||
pom.xml | 24-Aug-2016 | 452 | |
PREBUILT | 24-Aug-2016 | 272 | |
README.android | 24-Aug-2016 | 906 | |
README.md | 24-Aug-2016 | 661 | |
README.version | 24-Aug-2016 | 102 |
1 We build an equivalent of the jacoco-agent.jar which contains classes from org.jacoco.core, 2 org.jacoco.agent and org.jacoco.agent.rt packages but also classes from asm 5.0.1. 3 4 However, Jacoco depends on classes that do not exist in Android (java.lang.instrument.* or 5 javax.management.*) for runtime instrumentation only. The ART compiler would reject those classes 6 when they are either in the bootclasspath (core, frameworks, ...) or system apps. 7 8 Since we only use offline instrumentation for code coverage (using Jack) and do not execute these 9 classes at runtime, we simply not compile them here. 10 11 We also need to modify the source code to cut dependencies to the classes that we exclude from the 12 compilation. The changes are surrounded by "BEGIN android-change" and "END android-change". Here 13 is the list of the changes: 14 15 1) Remove the creation of JmxRegistration in org.jacoco.agent.rt.internal.Agent. 16
1 JaCoCo Java Code Coverage Library 2 ================================= 3 4 [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jacoco/org.jacoco.core/badge.svg?style=flat)](http://search.maven.org/#search|ga|1|g%3Aorg.jacoco) 5 6 JaCoCo is a free Java code coverage library distributed under the Eclipse Public 7 License. Check the [project homepage](http://www.eclemma.org/jacoco) 8 for downloads, documentation and feedback. 9 10 Please use our [mailing list](https://groups.google.com/forum/?fromgroups=#!forum/jacoco) 11 for questions regarding JaCoCo which are not already covered by the 12 [extensive documentation](http://www.eclemma.org/jacoco/trunk/doc/). 13