make/build.xml

changeset 453
e1d19f9fd5a9
parent 428
798e3aa19718
child 458
4b06441b7624
equal deleted inserted replaced
448:78bdb8a7f1e7 453:e1d19f9fd5a9
49 49
50 <!-- enable/disable make code coverage --> 50 <!-- enable/disable make code coverage -->
51 <condition property="cc.enabled"> 51 <condition property="cc.enabled">
52 <istrue value="${make.code.coverage}" /> 52 <istrue value="${make.code.coverage}" />
53 </condition> 53 </condition>
54
55 <!-- exclude tests in exclude lists -->
56 <condition property="exclude.list" value="./exclude/exclude_list_cc.txt" else="./exclude/exclude_list.txt">
57 <istrue value="${make.code.coverage}" />
58 </condition>
54 </target> 59 </target>
55 60
56 <target name="init" depends="init-conditions, init-cc"> 61 <target name="init" depends="init-conditions, init-cc">
57 62
58 <!-- extends jvm args --> 63 <!-- extends jvm args -->
314 <jvmarg line="${run.test.jvmargs} ${run.test.jvmsecurityargs}"/> 319 <jvmarg line="${run.test.jvmargs} ${run.test.jvmsecurityargs}"/>
315 <propertyset> 320 <propertyset>
316 <propertyref prefix="test-sys-prop."/> 321 <propertyref prefix="test-sys-prop."/>
317 <mapper from="test-sys-prop.*" to="*" type="glob"/> 322 <mapper from="test-sys-prop.*" to="*" type="glob"/>
318 </propertyset> 323 </propertyset>
324 <sysproperty key="test.js.excludes.file" value="${exclude.list}"/>
319 <classpath> 325 <classpath>
320 <pathelement path="${run.test.classpath}"/> 326 <pathelement path="${run.test.classpath}"/>
321 </classpath> 327 </classpath>
322 </testng> 328 </testng>
323 </target> 329 </target>

mercurial