Hi, it is a internal binary format that basically contains a boolean array for every class with the executed probes. We do not have a formal specification but from the code you can get an idea:
https://github.com/jacoco/jacoco/blob/master/org.jacoco.core/src/org/jacoco/core/data/ExecutionDataWriter.java To interpret the probes you need to understand the control flow analysis which is is implemented in JaCoCo, see our documentation: https://www.jacoco.org/jacoco/trunk/doc/flow.html In any case we do not consider the exec file format as an API and it might change at any point in time (and already did in the past). We recommend using the public Java API or the XML reports. Cheers, -marc > On 22. Aug 2020, at 05:32, winter <[email protected]> wrote: > > What's in the dump file .exec, is there some document I can study, thank u > > -- > You received this message because you are subscribed to the Google Groups > "JaCoCo and EclEmma Users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected] > <mailto:[email protected]>. > To view this discussion on the web visit > https://groups.google.com/d/msgid/jacoco/b228c2ce-c3e3-4390-900f-6bcebb891038n%40googlegroups.com > > <https://groups.google.com/d/msgid/jacoco/b228c2ce-c3e3-4390-900f-6bcebb891038n%40googlegroups.com?utm_medium=email&utm_source=footer>. -- You received this message because you are subscribed to the Google Groups "JaCoCo and EclEmma Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jacoco/D78280D5-9817-4A1C-84FD-C48B04310872%40mountainminds.com.
