make/code_coverage.xml

Wed, 27 Feb 2013 16:25:15 +0100

author
attila
date
Wed, 27 Feb 2013 16:25:15 +0100
changeset 125
1da9e37697f6
parent 111
230a711062c1
child 143
606a1946e3e2
permissions
-rw-r--r--

8009150: Previous dead code elimination was incomplete
Reviewed-by: hannesw, lagergren

     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <!--
     3  Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
     4  DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     6  This code is free software; you can redistribute it and/or modify it
     7  under the terms of the GNU General Public License version 2 only, as
     8  published by the Free Software Foundation.
    10  This code is distributed in the hope that it will be useful, but WITHOUT
    11  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    12  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    13  version 2 for more details (a copy is included in the LICENSE file that
    14  accompanied this code).
    16  You should have received a copy of the GNU General Public License version
    17  2 along with this work; if not, write to the Free Software Foundation,
    18  Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20  Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    21  or visit www.oracle.com if you need additional information or have any
    22  questions.
    23 -->
    24 <project name="code-coverage" default="generate-code-coverage-report" basedir="..">
    26   <!-- CODE COVERAGE -->
    27   <target name="init-cc-enabled" if="${cc.enabled}">
    29     <echo message="initialize [${jcov}] java coverage"/>
    32     <property name="cc.report.dir" value="${cc.dir}/CC_${jcov}_report"/>
    33     <property name="cc.merged.xml" value="${cc.dir}/CC_${jcov}_result-merged.xml"/>
    35     <condition property="run.test.cc.jvmargs" value="${cc.dynamic.args}">
    36       <equals arg1="${jcov}" arg2="dynamic" trim="true"/>
    37     </condition>
    39     <mkdir dir="${cc.dir}"/>
    41     <!-- info -->
    42     <echo message="jcov=${jcov}"/>
    43     <echo message="cc.generate.template=${cc.generate.template}"/>
    44     <echo message="cc.instrument=${cc.instrument}"/>
    45     <echo message="run.test.cc.jvmargs=${run.test.cc.jvmargs}"/>
    46     <echo message="cc.report.dir=${cc.report.dir}"/>
    47     <echo message="cc.merged.xml=${cc.merged.xml}"/>
    48   </target>
    50   <target name="init-cc-disabled" unless="${cc.enabled}">
    51     <property name="run.test.cc.jvmargs" value=""/>
    52   </target>
    54   <target name="init-cc" depends="init-cc-disabled, init-cc-enabled">
    55     <property name="run.test.cc.jvmargs" value=""/>
    56   </target>
    58   <target name="init-cc-cleanup" if="${cc.enabled}">
    59     <delete dir="${cc.dir}" failonerror="false" />
    60   </target>
    62   <target name="check-merging-files" depends="init">
    63 	<resourcecount property="cc.xmls">
    64   		<filelist dir="${cc.dir}" files="*.xml" />
    65 	</resourcecount>	
    66     <condition property="nothing-to-merge" value="true">
    67       <equals arg1="${cc.xmls}" arg2="1" trim="true"/>
    68     </condition>
    69   </target>
    71   <target name="fix-merging-files" depends="check-merging-files" if="${nothing-to-merge}">
    72 	<echo message="making pre-merge workaround"/>
    73 	<move todir="${cc.dir}" includeemptydirs="false">
    74 		<fileset dir="${cc.dir}">
    75 			<include name="*.xml"/>
    76 		</fileset>
    77 		<mapper type="glob" from="*.xml" to="CC_${jcov}_result-merged.xml"/>
    78 	</move>
    79   </target>
    81   <target name="merge-code-coverage" depends="fix-merging-files" unless="${nothing-to-merge}">
    82 	<echo message="merging files"/>
    83     <fileset dir="${cc.dir}" id="cc.xmls">
    84       <include name="**/*${jcov}*.xml"/>
    85       <include name="**/CC_template.xml"/>
    86     </fileset>
    88     <pathconvert pathsep=" " property="cc.all.xmls" refid="cc.xmls"/>
    90     <java classname="com.sun.tdk.jcov.Merger">
    91       <arg value="-verbose"/>
    92       <arg value="-output"/>
    93       <arg value="${cc.merged.xml}"/>
    94       <arg value="-exclude"/>
    95       <arg value="com\.oracle\.nashorn\.runtime\.ScriptRuntime*"/>
    96       <arg line="${cc.all.xmls}"/>
    97       <classpath>
    98         <pathelement location="${jcov.jar}"/>
    99       </classpath>
   100     </java>
   102   </target>
   104   <target name="generate-code-coverage-report" depends="merge-code-coverage">
   105     <java classname="com.sun.tdk.jcov.RepGen">
   106       <arg value="-verbose"/>
   107 <!--      <arg line ="-exclude_list CC.report.exclude"/> -->
   108       <arg line="-output ${cc.report.dir}"/>
   109       <arg value="${cc.merged.xml}"/>
   110       <classpath>
   111         <pathelement location="${jcov.jar}"/>
   112       </classpath>
   113     </java>
   114   </target>
   117 </project>

mercurial