What do you mean by "no of classes are equal"?

It helps to formulate questions or error reports like this:

1) STEPS TO REPRODUCE (ok, I see your script)
2) EXPECTED BEHAVIOUR
3) ACTUAL BEHAVIOR


Regards,
-marc



On 2016-09-09 12:05, Saurabh Garg wrote:
Hi All,
I am using below ant script with jacoco ant jar to generate jacoco
report files

<jacoco:report>
  <executiondata>
                               <file file="merged.exec"/>
 </executiondata>
 <structure name="Galore Project">
 <classfiles>
 <fileset dir="classes"/>
 </classfiles>
 <sourcefiles encoding="UTF-8">
 <fileset dir="src"/>
 </sourcefiles>
 </structure>

 <xml destfile="jacoco/report.xml"/>
</jacoco:report>

i want to exclude some classes that are no longer in use to do that i
added below snippet

jacoco:report>
  <executiondata>
                               <file file="merged.exec"/>
 </executiondata>
 <structure name="Galore Project">
 <classfiles>
 <fileset dir="classes">
                                               <exclude
name="**/A*.class"/>
                                        </fileset>
 </classfiles>
 <sourcefiles encoding="UTF-8">
 <fileset dir="src"/>
 </sourcefiles>
 </structure>

 <xml destfile="jacoco/report.xml"/>

 </jacoco:report>
but for both out come is same no of classes are equal when i ran the
both scripts.

Please suggest resolution for the same.

Thanks and regards
Saurabh

 --
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/5f5ceded-a464-475e-82eb-ba432e2654a1%40googlegroups.com
[1].
For more options, visit https://groups.google.com/d/optout.


Links:
------
[1]
https://groups.google.com/d/msgid/jacoco/5f5ceded-a464-475e-82eb-ba432e2654a1%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/14543c347a7b3aa6b016fea0af9df228%40mountainminds.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to